Posted on 2005-10-09 10:50
锋出磨砺 阅读(929)
评论(0) 编辑 收藏 所属分类:
java算法 、
消息中间件 、
web服务 、
aop 、
杂谈
最近在做Java Application的项目,对于ui的美观,做了一些尝试。有幸看到了JGoodIdes的LookAndFeel包。
效果大家可以看看如下连接
http://www.jgoodies.com
经过试验,解决了中文乱码问题,下面将经验和大家共分享。
LookAndFeel如同css一样,具体的概念大家可以参考其他文章,这里不做赘述。
http://www.blogjava.net/Files/itaogo/plastic-1.1.3.zip
1,加载附件plastic-1.1.3.jar到lib path,我用的是jbuilderX
2,创建一个新类AppFont.java
import java.awt.*;
import javax.swing.UIManager;
public class AppFont()
{
public static void setFont(Font pFont){
UIManager.put("Button.font", pFont);
UIManager.put("ToggleButton.font", pFont);
UIManager.put("RadioButton.font", pFont);
UIManager.put("CheckBox.font", pFont);
UIManager.put("ColorChooser.font", pFont);
UIManager.put("ToggleButton.font", pFont);
UIManager.put("ComboBox.font", pFont);
UIManager.put("ComboBoxItem.font", pFont);
UIManager.put("InternalFrame.titleFont", pFont);
UIManager.put("Label.font", pFont);
UIManager.put("List.font", pFont);
UIManager.put("MenuBar.font", pFont);
UIManager.put("Menu.font", pFont);
UIManager.put("MenuItem.font", pFont);
UIManager.put("RadioButtonMenuItem.font", pFont);
UIManager.put("CheckBoxMenuItem.font", pFont);
UIManager.put("PopupMenu.font", pFont);
UIManager.put("OptionPane.font", pFont);
UIManager.put("Panel.font", pFont);
UIManager.put("ProgressBar.font", pFont);
UIManager.put("ScrollPane.font", pFont);
UIManager.put("Viewport", pFont);
UIManager.put("TabbedPane.font", pFont);
UIManager.put("TableHeader.font", pFont);
UIManager.put("Table.font", pFont);
UIManager.put("TextField.font", pFont);
UIManager.put("PasswordFiled.font", pFont);
UIManager.put("TextArea.font", pFont);
UIManager.put("TextPane.font", pFont);
UIManager.put("EditorPane.font", pFont);
UIManager.put("TitledBorder.font", pFont);
UIManager.put("ToolBar.font", pFont);
UIManager.put("ToolTip.font", pFont);
UIManager.put("Tree.font", pFont);
}
}
3,寻找您的java application 的主程序
//引入
import com.jgoodies.plaf.LookUtils;
import com.jgoodies.plaf.plastic.PlasticLookAndFeel;
//修改程序如下
//Main method
public static void main(String[] args) {
try {
//原来的,请注释掉;jbuilder是如此写法。
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
//修改为
UIManager.put("ClassLoader", LookUtils.class.getClassLoader());
UIManager.setLookAndFeel(new PlasticLookAndFeel());
AppFont.setFont(new java.awt.Font("宋体", 0, 12));
}
catch(Exception e) {
e.printStackTrace();
}
new MainApp();
}
4,附件2 UISample.rar是jbuilder的一个简单效果的项目。下载地址 http://www.blogjava.net/Files/itaogo/UISample.rar