重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
我的时间有限,所以就给你一种方法吧,代码就不能帮你改了,
密山网站建设公司创新互联建站,密山网站设计制作,有大型网站制作公司丰富经验。已为密山近1000家提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的密山做网站的公司定做!
//
设置窗体大小
int
windowswedth
=
600;
int
windowsheight
=
600;
//
得到显示器屏幕的宽高
int
width
=
toolkit.getdefaulttoolkit().getscreensize().width;
int
height
=
toolkit.getdefaulttoolkit().getscreensize().height;
//设置窗体在显示器居中显示
this.setbounds((width
-
windowswedth)
/
2,
(height
-
windowsheight)
/
2,
windowswedth,
windowsheight);
这是我写的程序中的居中代码,你拿去试试吧,应该好使!
窗体的大小减去组件的大小除以2即可活的居中的位置
代码示例,我写的:
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Test extends JFrame
{
private JButton button;
public Test()
{
super("按钮居中显示示例");
button=new JButton("满意答案");
button.setSize(100,50);
Container rongqi=this.getContentPane();
rongqi.setLayout(null);
rongqi.add(button);
setSize(400,200);
setResizable(false);
setLocationRelativeTo(null);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
//关键代码,设置按钮位置
button.setBounds((this.getWidth()-button.getWidth()-5)/2,(this.getHeight()-28-button.getHeight())/2,
button.getWidth(),button.getHeight());
setVisible(true);
}
public static void main(String[]args)
{
new Test();
}
}
亲不要搞笑,java的文字居中是什么含义。
代码规范吗?这个是个人的编写问题。
如果你说的是页面显示的居中,html是center/center。
若果是java代码编写不规范,建议选中你的代码,然后右击鼠标source-fomart
或者选中代码使用快捷键 ctrl+shift+F。