我是java初学者。尝试使用NetBeans作为示例代码:
import java.applet.*;
import java.awt.*;
public class Damn extends Applet
{
public void paint (Graphics g)
{
g.drawString("Hello World!", 50, 25);
}
}
为此创建了一个java小程序文件,当我运行它时,它不断弹出一个屏幕,上面写着"在该死的项目中找不到NewMain类"
我该如何修复它?运行它?
以下是创建最小小程序的代码:
import javax.swing.JApplet;
import javax.swing.SwingUtilities;
import javax.swing.JLabel;
public class HelloWorld extends JApplet {
//Called when this applet is loaded into the browser.
public void init() {
//Execute a job on the event-dispatching thread; creating this applet's GUI.
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
JLabel lbl = new JLabel("Hello World");
add(lbl);
}
});
} catch (Exception e) {
System.err.println("createGUI didn't complete successfully");
}
}
}
如果你是Java小程序的新手,你应该点击这个链接。
顺便说一句,小程序是一种古老的技术,没有人再使用它了。。。他们通过过去证明了自己的弱点。。。
不要运行项目,而是运行那个特定的文件。(要执行此操作,请右键单击文件中的任意位置,然后选择"运行文件")。我知道这可能不是最好的方法,但对我来说是有效的。