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

(fmt) Formatting fails when java.nio.CharBuffer is the Appendable

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P3 P3
    • None
    • 5.0
    • core-libs
    • sparc
    • solaris_2.6

      When i tried to use java.nio.CharBuffer as the target. could not able to find the formatted String in charbuffer.

      public class Test1 {

          public static void main(String[] arg) {
          int size = 100;
          System.out.println(" Started formatter.... ");
          CharBuffer charbuf = CharBuffer.allocate(size);
          Formatter formatter = new Formatter(charbuf);
          int number = 102922;
          formatter.format(" Total amount is ** %020d \n",number);
          System.out.println(charbuf);
          
          }
      }

      </code>
      <console>
      vishalb:/home/vv145429/tiger/src/formating/bugs 240 % javac -source 1.5 Test1.java
      vishalb:/home/vv145429/tiger/src/formating/bugs 241 % java Test1
       Started formatter....

      vishalb:/home/vv145429/tiger/src/formatting/bugs

            iris Iris Clark
            vvegurusunw Viswadeep Veguru (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: