javaswinghelloworld-创新互联
1.概述
一个简单的java swing程序hello world,只有一个button
锡林浩特ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联建站的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!2.源码
import javax.swing.*;
public class server
{
public static void main(String[] args) {
JFrame jFrame = new JFrame("title");
JButton button = new JButton("Test button");
jFrame.add(button);//把button添加到JFrame中
jFrame.setSize(300,300);//设置JFrame大小
jFrame.setVisible(true);//设置可见,不然的话看不到
}
}
3.第一次修改
有没有觉得有点奇怪,整个button占满了窗口?
没错,少了一个JPanel:
import javax.swing.*;
public class server
{
public static void main(String[] args) {
JFrame jFrame = new JFrame("title");
JPanel jPanel = new JPanel();
JButton button = new JButton("Test button");
jPanel.add(button);
jFrame.setContentPane(jPanel);
jFrame.setSize(300,300);
jFrame.setVisible(true);
}
}
添加一个JPanel,把Button添加到JPanel中,然后设置JFrame的contenPane.
效果如下:
4.第二次修改
嗯,有点hello world的样子了,但是你有没有点击过左上角的x按钮?
点了之后,这个东西是"消失"了,但是在后台还在运行着,所以...
jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
需要这样设置它的默认关闭操作.
另一个修改就是对它居中显示,要不然的话总是启动的时候在左上角.
很简单,一行就可以了.
jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
完整代码:
import javax.swing.*;
public class server
{
public static void main(String[] args) {
JFrame jFrame = new JFrame("title");
JPanel jPanel = new JPanel();
JButton button = new JButton("Test button");
jPanel.add(button);
jFrame.setContentPane(jPanel);
jFrame.setSize(300,300);
jFrame.setLocationRelativeTo(null);
jFrame.setVisible(true);
jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
分享标题:javaswinghelloworld-创新互联
标题链接:http://pwwzsj.com/article/cchged.html