随笔 - 6  文章 - 129  trackbacks - 0
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 821413
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

07 2009 档案

透视图的标签改成波浪形
     摘要: PlatformUI.getPreferenceStore().setValue(IWorkbenchPreferenceConstants.DOCK_PERSPECTIVE_BAR, IWorkbenchPreferenceConstants.TOP_RIGHT);
PlatformUI.getPreferenceStore().setDefault(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false);  阅读全文

posted @ 2009-07-28 09:39 Ke 阅读(332) | 评论 (0)  编辑

解決在eclipse项目中使用utf-8字符時导出错误
     摘要: 在eclipse项目中使用utf-8字符可能会造成导出时产生错误,程序不能正常运行
我以前网上找到的办法都不好,解决的办法其实十分简单
在build.properties文件中加入

javacDefaultEncoding.. = UTF-8   阅读全文

posted @ 2009-07-28 09:17 Ke 阅读(508) | 评论 (0)  编辑

往Eclipse RCP视图中添加右键弹出菜单(轉)
     摘要: 一个TreeViewer 必须继承ViewPart方法,并且重写其中的createPartControl(Composite parent)类  阅读全文

posted @ 2009-07-27 13:50 Ke 阅读(2255) | 评论 (0)  编辑

eclispe RCP 小技巧(轉)

posted @ 2009-07-27 13:46 Ke 阅读(2276) | 评论 (0)  编辑

getOutputStream() has already been called for this response

posted @ 2009-07-22 17:14 Ke 阅读(877) | 评论 (0)  编辑

其它線程訪問UI線程
     摘要: Display.getDefault().asyncExec(new Runnable() {

@Override
public void run() {
// TODO Auto-generated method stub
... ...
}

});  阅读全文

posted @ 2009-07-16 11:52 Ke 阅读(230) | 评论 (0)  编辑