1 import java.io.*; 2 class Invoke { 3 void invoke(DataOutput out) throws IOException{ 4 m(); 5 String s = new String(); 6 s = super.toString(); 7 s = String.valueOf(true); 8 s = s.toUpperCase(); 9 out.writeUTF(s); 10 } 11 private void m() { 12 System.out.println("Hi"); 13 } 14 }