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做界面,只有想不到,沒有做不到.