Advertisement
Guest User

Untitled

a guest
May 30th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. public void copy() throws java.io.FileNotFoundException;
  2. Code:
  3. 0: new #22 // class java/io/FileInputStream
  4. 3: dup
  5. 4: ldc #29 // String in.txt
  6. 6: invokespecial #23 // Method java/io/FileInputStream."<init>":(Ljava/lang/String;)V
  7. 9: astore_1
  8. 10: new #30 // class java/io/FileOutputStream
  9. 13: dup
  10. 14: ldc #31 // String out.txt
  11. 16: invokespecial #32 // Method java/io/FileOutputStream."<init>":(Ljava/lang/String;)V
  12. 19: astore_2
  13. 20: sipush 1024
  14. 23: newarray byte
  15. 25: astore_3
  16. 26: iconst_m1
  17. 27: aload_1
  18. 28: aload_3
  19. 29: invokevirtual #33 // Method java/io/InputStream.read:([B)I
  20. 32: if_icmpeq 43
  21. 35: aload_2
  22. 36: aload_3
  23. 37: invokevirtual #34 // Method java/io/OutputStream.write:([B)V
  24. 40: goto 26
  25. 43: aload_1
  26. 44: invokevirtual #35 // Method java/io/InputStream.close:()V
  27. 47: aload_2
  28. 48: invokevirtual #36 // Method java/io/OutputStream.close:()V
  29. 51: goto 97
  30. 54: astore 4
  31. 56: ldc #38 // class wox/serial/Easy
  32. 58: invokevirtual #39 // Method java/lang/Class.getName:()Ljava/lang/String;
  33. 61: invokestatic #40 // Method java/util/logging/Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
  34. 64: getstatic #41 // Field java/util/logging/Level.SEVERE:Ljava/util/logging/Level;
  35. 67: aconst_null
  36. 68: aload 4
  37. 70: invokevirtual #42 // Method java/util/logging/Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
  38. 73: aload_1
  39. 74: invokevirtual #35 // Method java/io/InputStream.close:()V
  40. 77: aload_2
  41. 78: invokevirtual #36 // Method java/io/OutputStream.close:()V
  42. 81: goto 97
  43. 84: astore 5
  44. 86: aload_1
  45. 87: invokevirtual #35 // Method java/io/InputStream.close:()V
  46. 90: aload_2
  47. 91: invokevirtual #36 // Method java/io/OutputStream.close:()V
  48. 94: aload 5
  49. 96: athrow
  50. 97: goto 119
  51. 100: astore 4
  52. 102: ldc #38 // class wox/serial/Easy
  53. 104: invokevirtual #39 // Method java/lang/Class.getName:()Ljava/lang/String;
  54. 107: invokestatic #40 // Method java/util/logging/Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
  55. 110: getstatic #41 // Field java/util/logging/Level.SEVERE:Ljava/util/logging/Level;
  56. 113: aconst_null
  57. 114: aload 4
  58. 116: invokevirtual #42 // Method java/util/logging/Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
  59. 119: return
  60. Exception table:
  61. from to target type
  62. 26 43 54 Class java/io/IOException
  63. 26 43 84 any
  64. 54 73 84 any
  65. 84 86 84 any
  66. 26 97 100 Class java/io/IOException
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement