How do I create an executable jar file from my program so I can run it per double-click or from command line?
-
I am using the program Eclipse to compile my .jar http://pastebin.com/AY79DbgY It should only be a console window. I am just starting out on java, so I have no idea what I did wrong. When I try to run the .jar I compiled in Eclipse, it doesn't run at all, but if I open cmd, and try to run it via there, it prints out this, none of which I understand at all: Exception in thread "main" java.lang.NoClassDefFoundError: server Caused by: java.lang.ClassNotFoundException: server at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) Could not find the main class: server. Program will exit. I just wanted to make a .jar that I could run from any computer without having to use Eclipse. It runs just fine in the console there. Also, every once in a while, when I terminate the script in the console in Eclipse, I get this error, but otherwise it seems to run just fine: Exception in thread "main" java.util.NoSuchElementException: No line found at java.util.Scanner.nextLine(Unknown Source) at finalproject.main(finalproject.java:432) So I kinda have no idea what I'm doing at this point. If my typing seems like I'm young, it's true, I'm only 15.
-
Answer:
You need to add the name of the class that contains the main() method that's executed when you run the JAR in the manifest. Take a look at http://download.oracle.com/javase/tutorial/deployment/jar/ for instructions.
Ryan at Stack Overflow Visit the source
Other answers
I don't know what you really did here, so here are some guesses from my glass ball: You are calling your program by java -cp file.jar server, while it would have to be java -cp file.jar finalproject. Use the latter command. Your IDE indicates some main class (server) in the Jar Manifest which does not exist, and you are using java -jar file.jar. This would also explain why you can't run it from Eclipse. Check your build settings to indicate the right main class.
PaÅlo Ebermann
In your JAR file you should have a file called MANIFEST.MF (under folder META-INF) This describes various properties of your jar file. You should edit it and add: Main-Class: finalproject I would put your class in a package because having it in the default package invites a little classpath trouble. You can open the JAR file using winzip or winrar and edit the MANIFEST.MF directly just to test, but in reality you should have it outside together with the classes you are packaging in the JAR so that each time you generate the JAR file you include it with the rest of the classes. Here is how you include the file with additions to the default manifest when generating the JAR file. http://download.oracle.com/javase/tutorial/deployment/jar/modman.html
jbx
Related Q & A:
- How do I create a Cocoa Touch Framework?Best solution by stackoverflow.com
- How do i create virtual subdomain using htaccess?Best solution by Stack Overflow
- How do I create an HTML table, in jQuery, with JSON data?Best solution by Stack Overflow
- How do I create a digital signature and how do I use it?Best solution by support.office.com
- How do I change .3gp video files to other video files, so I can open it up in Windows?Best solution by helpdeskgeek.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.