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
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