Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.52 KB | None | 0 0
  1. @ echo off
  2. COLOR 0a
  3. Title Leaum's All-In-One Java Compiler
  4.  
  5. echo Compiling The Class Files...
  6. "Whattt to do here?!" C:\JavaApps
  7. javac -classpath . *.java
  8. Pause
  9. cls
  10.  
  11. echo Type the CLASS File Name Exactly...
  12. set Man=
  13. set /p Man=Type CLASS File Name: %=%
  14. pause
  15. echo Compiling The Manfiest File...
  16. echo Main-Class: %Man%>>manifest.txt
  17. pause
  18. cls
  19.  
  20. set Jar=
  21. set /p Jar= Jar Name: %=%
  22. pause
  23. echo Compiling The Jar Executable File...
  24. jar cvfm %Jar%.jar manifest.txt *.class
  25. echo Total Compile Operation Is Complete.
  26. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement