/* FormatDemo4.java */ public class FormatDemo4 { public static void main( String[] args ) { try { Formatter f = new Formatter( "I3" ); Object o = f.read( new StringBufferInputStream("123") ); System.out.println(o); } catch ( InvalidFormatException e ) { System.out.println( e ); } catch ( InputFormatException e ) { System.out.println( e ); } } }