Share Pastebin
Guest
Public paste!

TOP SECRET HACK

By: a guest | Mar 19th, 2010 | Syntax: Java | Size: 0.45 KB | Hits: 45 | Expires: Never
Copy text to clipboard
  1. public class HelloWorld {
  2.  
  3.         public static void main(String[] args) {
  4.         String a="SomeText";
  5.         int b=52;
  6.         float f=21.1F;
  7.         a="SomeText";
  8.         System.out.println(b);
  9.        
  10.         }
  11.  
  12. }
  13.  
  14.  
  15. //Bytecode
  16.  
  17. ldc "SomeText"
  18. astore_1
  19. bipush 52
  20. istore_2
  21. ldc 21.1
  22. fstore_3
  23. ldc "SomeText"
  24. astore_1
  25. getstatic java/lang/System/out Ljava/io/PrintStream;
  26. iload_2
  27. invokevirtual java/io/PrintStream/println(I)V
  28. return