Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4103523

StyledString.substring throws exceptions for valid range

XMLWordPrintable

    • 1.2beta3
    • sparc
    • solaris_2.5
    • Not verified

      See sample code below. Tested against JDK-1.2beta3-B

      import java.awt.font.StyledString;
      import java.awt.Font;

      public class GetCharsTest {

        public static void main (String args[]) {

      try {
      String string2 = "123456";

      Font font2 = new Font("Helvetica",Font.BOLD,12);

         StyledString s = new StyledString(string2,font2);

      System.out.println("character " + s.charAt(0) );
      System.out.println("string " + s.toString() );
      StyledString aStyledString = s.substring(1,2);
      } catch (Throwable exception) {
                      System.out.println("Exception" + exception);
      }
              System.out.println("Done ssf");
      System.exit(0);
        }

      }

            dmendenhsunw David Mendenhall (Inactive)
            sflemingsunw Steve Fleming (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: