The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
45 views

Java-Checking for main class

I had a problem in one of my java products, in which players would run a cheat class as the main class. Is there a way in which I can check for the main class running? I've tried adding a UID but they ...
0
votes
0answers
16 views

appassembler-maven-plugin JSW - How to set wrapper-java-mainclass

i try to use the appassembler-maven-plugin to ease the use of the Java-Service-Wrapper My Setup is as follows: implemented a class MyServiceWrapper which extends WrapperListner from JSW to have ...
1
vote
2answers
58 views

“Error: Could not find or load main class com.mycompany.App” when trying to execute Maven-generated Jar

I'm getting this error even though com/mycompany/App.class exists within the Jar and it has a main method. Here is what my META-INF/MANIFEST.MF looks like: Manifest-Version: 1.0 Archiver-Version: ...
-5
votes
1answer
67 views

Problems calling a class with static main [closed]

I was wondering how this would interfere with the main class when called, I have found no suitable way to make a main class and call it in a final. import java.awt.*; import java.awt.event.*; ...
0
votes
0answers
18 views

How can I identify the main class of a jar file?

I have a problem in a jar file, I download an application in the form of jar file, but when i tried to run it, an error message have been appeared like this: "Failed to load Main-Class manifest ...
2
votes
0answers
244 views

Error: no main manifest attribute, in matlab.jar

I installed MATLAB on Fedora and tried to run it using java -jar matlab.jar, but I got this error: no main manifest attribute, in matlab.jar I read somewhere to make a manifest file with below ...
0
votes
0answers
71 views

Android : Error: Could not find or load main class com.sun.xml.stream.BufferManager

While launching my app from eclipse ADT i am getting this error . Error: Could not find or load main class com.sun.xml.stream.BufferManager. Everything was working properly. I have not changed any ...
0
votes
0answers
20 views

another method in the same test String args class

How can I create a method within the same class as follows? is there another way to do this? public class TestMyAuction { public static void main(String[] args) { print(1); } ...
0
votes
0answers
58 views

I excute any the hadoop command,includes the hadoop versio,I get the error:could not find or load the main class(on ubuntu 12.10 64bit server)

I have installed hadoop which download from github on my ubuntu 12.10 64bit server,but when i has configured all the configurations and excute any the hadoop command,includes the hadoop version,hadoop ...
0
votes
3answers
110 views

eclipse for Java NoClassDefFound error on main entry point - package, project and class are the same

Trying to create a windows executable but always get error on Exception in thread main java.lang.NoClassDefFoundError. I've read all the other responses but so far my issue remains the same. I have a ...
0
votes
0answers
80 views

Error while running a java code for MATLAB

I am doing coding for a voice password in Java. While running the ja, I get the following error message: Error: Could not find or load main class Files\MATLAB\MATLAB What might be the problem?
0
votes
1answer
106 views

My JOGL program refuses to run what is wrong?

here is my code public class SimpleJoglApp extends JFrame { public static void main(String[] args) { final SimpleJoglApp app = new SimpleJoglApp(); // show what we've done ...
0
votes
2answers
2k views

Could not find or load main class message in netbeans IDE

I setup the Netbeanss 7.1.1 and write the simple code below. But when I run the class, it doesnt work correctly and give this message : Error: Could not find or load main class paket.sss Java Result: ...
0
votes
3answers
139 views

Executing java class in JAR from a java program

My Question is: I have a test.java class which is the main class. There is one more class(non-main class) which is present in JAR file. Now i want to compile and execute demo class present in JAR ...
2
votes
1answer
1k 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) ...
-1
votes
1answer
46 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 ...
0
votes
1answer
46 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
702 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: ...
16
votes
6answers
26k 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 ...
0
votes
1answer
4k 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 ...
3
votes
3answers
1k 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 ...
8
votes
2answers
5k 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 ...
3
votes
1answer
3k 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 ...
0
votes
6answers
262 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" ...
2
votes
2answers
3k 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 ...
2
votes
2answers
1k 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 ...