Readers like you help support MUO. When you make a purchase using links on our site, we may earn an affiliate commission. Read More.

Where can I get a free Windows app for compiling, decompiling and edit java classes and also build them into .Jar files for PC and MID-let version?

2010-12-11 10:12:00
HiJCreator lite freehttp://www.jcreator.org/download.htmYou can configure a "tool" that will automate the jar creation process. You only need to do it once. Click on Configure/Options. Click on Tools in the left column. Click New, and choose Create Jar file. Click on the newly created entry Create Jar File in the left column under Tools. Edit the middle line labeled Arguments: it should have cvfm $[PrjName].jar manifest.txt *.classClick OK. Now set up a project for your program, create a manifest file manifest.txt or copy and edit an existing one. Place manifest.txt in the same folder where the .class files go. Under View/Toolbars check the Tools toolbar. Click on the corresponding tool button or press Ctrl-1 (or Ctrl-n if this is the n-th tool) to run the Create Jar File tool. With Windows Explorer, go to the jar file that you just created and double click on it to run. Creating a jar File in Command PromptStart Command Prompt. Navigate to the folder that holds your class files: C:>cd myworkSet path to include JDK’s bin. For example: C:mywork> path c:Program FilesJavajdk1.5.0_09bin;%path%Compile your class(es): C:mywork> javac *.javaCreate a manifest file: C:mywork> echo Main-Class: DanceStudio >manifest.txtCreate a jar file: C:mywork> jar cvfm DanceStudio.jar manifest.txt *.classTest your jar: C:mywork> DanceStudio.jarDJ Java Decompiler DJ Java Decompiler is Windows 95, Windows 98, Windows 2000, Windows XP, Windows 2003, Windows Vista, Windows 7 decompiler and disassembler for Java that reconstructs the original source code from the compiled binary CLASS files (for example Java applets). http://members.fortunecity.com/neshkov/dj.htmlJar Compiler Pluginhttp://www.tabbyinstall.com/jarc/JarCompiler.htmlhttp://www.tabbyinstall.com/jarc/CompilerHelp.htmlSetting .JAR File Associationhttp://windowstipoftheday.blogspot.com/2005/10/setting-jar-file-association.htmlJarfix 1.1.0http://www.softpedia.com/get/Others/Miscellaneous/Jarfix.shtmlHow to create JAR file in Windowshttp://rcanblog.com/jar-java-archive-format-140/
MAKEUSEOF VIDEO OF THE DAY
SCROLL TO CONTINUE WITH CONTENT