Results 1 to 4 of 4
- 01-25-2012, 07:39 PM #1
Member
- Join Date
- Jan 2012
- Posts
- 1
- Rep Power
- 0
Exception in thread main java.lang.nosuchmethoderror main
Whenever m compiling no error is showed but while executing error occurs(nosuchmethoderror)
If i m not wrong then in applet Main method is not declared
Please guide
import java.awt.*;
import java.applet.*;
/*
<applet code="ColorDemo" width=300 hieght=200>
</applet>
*/
public class ColorDemo extends Applet
{
public void paint(Graphics g)
{
Color c1 = new Color(255,100,100);
Color c2 = new Color(100,255,100);
Color c3 = new Color(100,255,255);
g.setColor(c1);
g.drawLine(0,0,100,100);
g.drawLine(0,25,150,200);
g.setColor(c2);
g.drawLine(40,50,200,100);
g.drawLine(75,90,400,400);
g.setColor(c3);
g.drawLine(200,100,300,500);
g.drawLine(231,132,123,345);
g.setColor(Color.red);
g.drawOval(10,10,100,100);
g.fillOval(50,45,50,200);
g.setColor(Color.blue);
g.drawOval(10,10,100,100);
g.drawRect(50,45,50,200);
g.setColor(Color.cyan);
g.fillRect(10,10,100,100);
g.drawRect(50,45,50,200);
}
}
- 01-25-2012, 08:57 PM #2
Re: Exception in thread main java.lang.nosuchmethoderror main
Why do they call it rush hour when nothing moves? - Robin Williams
- 01-25-2012, 09:43 PM #3
Re: Exception in thread main java.lang.nosuchmethoderror main
You don't show the full text of the error message. What did you leave out?
- 01-26-2012, 04:19 PM #4
Similar Threads
-
Error:Exception in thread "main" java.lang.NoSuchMethodError:main
By jerry jessie in forum New To JavaReplies: 6Last Post: 01-21-2012, 05:59 AM -
Exception in thread "main" java.lang.NoSuchMethodError: main
By Bibin in forum New To JavaReplies: 1Last Post: 12-24-2011, 08:45 AM -
Exception in thread main.java,lang.NoSuchMethodError:main
By femily in forum New To JavaReplies: 1Last Post: 11-23-2011, 05:52 AM -
Exception in thread "main" java.lang.NoSuchMethodError: main
By ravifedora in forum New To JavaReplies: 28Last Post: 03-16-2011, 07:06 PM -
ERROR: Exception in thread "main" java.lang.NoSuchMethodError: main
By barney in forum New To JavaReplies: 1Last Post: 08-07-2007, 07:10 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks