java界面美化包怎么用

public static void main(String[] args) {
try {
UIManager.setLookAndFeel("com.jtattoo.plaf.mint.MintLookAndFeel");
} catch (Exception e) {
e.printStackTrace();

⑵ java swing 编程中如何美化窗口

可以通过继承JPanel类,然后覆盖其中的paintComponet(Graphics g)函数在里面画你想画的图片就可以了

⑶ 我想美化JAVA图形界面,比如说换个看点的表格,换颜色等操作,怎么做现在的界面如下图,好丑的

在 Swing 设计中外观由 Look and Feel 控制的(就是我们说的 Theme, Skin)。比如 JRE 6 自带了 Nimbus 主题就比较适合。如果你想更好看只有自己动手了,这就比较复杂了,不是入门级别的水平了。可能在 google, bing 上能搜索到免费的第三方主题库呢,碰碰运气啊。

http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/nimbus.html

⑷ java gui图形界面怎么把边角变得圆润

下载一个BeautyEYE插件,就可以美化JAVA GUI界面了.多动手,搜一下CSDN等相关论坛,对你有帮助。

⑸ 怎样美化java程序的界面

使用Java的LookAndFeel设置,可以直接网络或Google一下,一般来说除非使用系统自带外观,否则需要下载jar包。
我比较推荐的是有Apple风格的QuaQuaLookAndFeel包,你可以查一下,下载后可直接放在工程中使用,很方便。
另外经常用到的较为权威的包是substance的外观优化,有很多如金属风格、复古风格等,但是本人不太喜欢,我还是觉得Apple风格的比较清新好看。

⑹ 怎样美化JAVA界面

  1. 使用Java的LookAndFeel设置,可以直接百抄度或Google一下,一般来说除非使用系统自带外观,否则需要下载jar包。

  2. 我比较推荐的是有Apple风格的QuaQuaLookAndFeel包,你可以查一下,下载后可直接放在工程中使用,很方便。

  3. 另外经常用到的较为权威的包是substance的外观优化,有很多如金属风格、复古风格等,

  4. 选择SWT/JFace吧,RCP插件式开发的效率也不是awt/Swing可以比的

⑺ java图形界面太难看,求工具美化

选择SWT/JFace吧,RCP插件式开发的效率也不是awt/Swing可以比的

⑻ java 窗口怎么美化

可以设置LookAndFeel,通过第三方皮肤:
可选使用substance、JTattoo、liquidlnf等,我当前使用的是JTattoo的皮肤,swing/awt的默认皮肤确实是有点那个...LZ可以去G一下上述皮肤,你会发现你的界面会很NICE的.
如下代码是我使用JTattoo的SmartLookAndFeel主题皮肤的方法,GoodLuck!

Java code?

publicstaticvoidmain(String[]args){

JFrame.(true);

JDialog.(true);

try{

SmartLookAndFeel.setTheme("Green");

SmartLookAndFeellookFeel=newSmartLookAndFeel();

javax.swing.UIManager.setLookAndFeel(lookFeel);

}catch(Exceptione){

e.printStackTrace();

}

java.awt.EventQueue.invokeLater(newRunnable(){

publicvoidrun(){

newToolMainFrame().setVisible(true);

}

});

⑼ java窗口,谁能帮我美化一下。

//packagetest;

importjava.awt.GridLayout;
importjava.awt.LayoutManager;

importjavax.swing.JButton;
importjavax.swing.JFrame;
importjavax.swing.JLabel;
importjavax.swing.JPasswordField;
importjavax.swing.JTextField;

{

privateLayoutManagermanager;
privateJLabeluserNameLab,passwordLab;
privateJTextFielserNameTxt;
;
privateJButtonokBtn,cancelBtn;

publicDemo05(){
init();
this.setVisible(true);
}

publicstaticvoidmain(String[]args){
newDemo05();
}

privatevoidinit(){
//manager=newGridLayout(3,2,0,0);
this.setLayout(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("测试窗口一");
this.setSize(300,300);

userNameLab=newJLabel("用户名:",JLabel.RIGHT);
userNameLab.setBounds(30,30,60,25);
this.add(userNameLab);

userNameTxt=newJTextField();
userNameTxt.setBounds(90,30,120,25);
this.add(userNameTxt);

passwordLab=newJLabel("密码:",JLabel.RIGHT);
passwordLab.setBounds(30,65,60,25);
this.add(passwordLab);

passwordTxt=newJPasswordField();
passwordTxt.setBounds(90,65,120,25);
this.add(passwordTxt);

okBtn=newJButton("确定");
okBtn.setBounds(50,130,80,25);
this.add(okBtn);

cancelBtn=newJButton("取消");
cancelBtn.setBounds(150,130,80,25);
this.add(cancelBtn);

}
}

你改成这样看看,用的是绝对布局

⑽ java swing怎样开发出漂亮的界面

Swing 支持切换界面风格啊...
默认的是Metal风格,确实不好看
你可以切换为Windows风格,看起来和Windows上的程序就是一样滴了,还可以切换为苹果的风格,很Beauty滴说.
如果你用的是jdk6,甚至可以自己定义自己想要的风格.
一句话,用Swing做界面,只有想不到,没有做不到.