Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
5k views

“Could not find the main class” when double-clicking .jar file

First: I realize that this issue should be quite simple and lots of people seem to have experienced it. However, it appears my issue may be slightly different from existing posts. I'm using NetBeans ...
5
votes
2answers
2k views

Why it could not find the main class?

I have a very simple code: package mygame; public class RunGame { public static void main(String[] args) { System.out.println(args[0]); } } I can compile that code but I cannot run ...
2
votes
1answer
47 views

main class of a tomcat web application

I have a client server application. The server is made of restful services with jersey and is deployed on tomcat 7. Actually, I need to create the context of the services (read some high sized files) ...
2
votes
3answers
299 views

Doxygen won't process main.cpp

So I'm new to using Doxygen and I was able to get it to work smoothly. I was able to document my classes and structs and it generates the HTML files perfectly. The issue I'm running into is it won't ...
2
votes
2answers
2k views

Deploying netbeans applications - jar file error (could not find main class)

I have a small GUI application developed with netbeans. I used the 'clean and build' option to build an executable jar file. .jar file works in my pc. But when i sent the application to my friend he ...
1
vote
1answer
1k views

java -cp “lib/*” versus java -cp “lib/*.jar”

If the lib/ directory contains only .jar files, what's the difference between java -cp "lib/*" ... and java -cp "lib/*.jar" ... If I use the latter I ran into errors regarding main class and I ...
1
vote
2answers
845 views

Problem running a Jar file

I've compiled a java project into a Jar file, and am having issues running it. When I run: java -jar myJar.jar I get the following error Could not find the main class: myClass The class file is ...
0
votes
1answer
27 views

Call a method from my “MainActivity” in Android

I'm currently messing up with the Google's C2DM notification service. Following the steps in this tutorial: http://www.vogella.de/articles/AndroidCloudToDeviceMessaging/article.html, I succesfully ...
0
votes
1answer
287 views

Java “Could not find main class” blah blah blah, but something strange:

So. I compile a .jar file. I know I have the Manifest correct. The main class is called "Boot." Whenever I try to run the .jar, I get the following error: Could not find the main class: ...
0
votes
1answer
2k views

Failed to load main-class manifest attribute

I created a simple applet to run on a web browser. i create Jar file by running "C:\Program Files\Java\jdk1.6.0_21\bin\jar" cfv Project7Applet.jar *.class in a command prompt and then when i try to ...
0
votes
6answers
138 views

What “ClassName objectName;” does before the main method?

In this code I see the following lines before the "main" method: JTextArea displayArea; JTextField typingArea; I wonder what these lines do and when they are executed. As far as I know the "main" ...
-1
votes
1answer
23 views

Is it possible to use another package definition within ANT then it should

Currently working on a system that is going 2 be build from ANT. My question is very simple and i hope the answer is equally simple I've created a java project in Eclipse that uses the following dir ...