界面程序问题
我想问一下有没有办法可以让一个有界面的程序不用在html环境下运行,因为那样运行之后总觉得有点难看,但是用Appletviewer命令来查看又很麻烦,谢谢各位!!
你将它写成 application 就行了, 不写成 applet.
版主,我研究了一个晚上,都不知道怎么弄,能不能给我弄个简单的例子啊,不好意思啊,我刚学的,感激涕零!!
你查看本论坛的精华帖吧,里面有一些是有界面的,都有源代码,你自己研究一下吧,要简单的还不容易,几句话就可以实现界面了
import javax.swing.*;
import java.awt.*;
public class Test extends JFrame{
/** Creates a new instance of Test */
public Test() {
super("测试");
this.getContentPane().add(new JLabel("这是一个JLabel"));
this.setSize(300,300);
this.setLocationRelativeTo(null);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String args[]){
new Test();
}
}