随笔 - 6  文章 - 129  trackbacks - 0
<2024年4月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 814912
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2010 档案

Openbravo ERP Development Environment - Stack Setup
     摘要: This article explains in detail how to install and configure the whole stack required for a Openbravo ERP development environment, including:

* PostgreSQL.
* Oracle.
* Sun JDK.
* Apache Ant.
* Apache Tomcat.  阅读全文

posted @ 2010-12-31 08:31 Ke 阅读(767) | 评论 (0)  编辑

Ubuntu 下使用远程桌面连接 rdesktop[转载 -> 保存]
     摘要: 通过图形界面的 tsclient 来远程访问非常简单,照着界面上选项配置即可。这里我只记录一个问题及其解决。当我们设置为全屏模式的话,tsclient 将以 -f 的参数来启动 rdesktop,按照正常情况,退出全屏的方式是使用 Ctrl+Alt+Enter 按键组合。可是这个组合在启动了 Compiz 特效的 Ubuntu 下失效了。解决的办法很简单,打开 Compiz 的配置管理(首选项->Compiz Config Settings Manager),找到 Utility 下的“工作区”配置,进去后,去掉“旧式全屏支持”的选项,问题即可解决。  阅读全文

posted @ 2010-12-09 18:37 Ke 阅读(1905) | 评论 (0)  编辑

openbravo中圖片 IMG 顯示方式 2010-12-5
     摘要: --Openbravo_ERP_250.css
.Menu_ToolBar_Button_Icon_logout {
background-repeat: no-repeat;
background-position: center center;
background-image: url(Menu/ToolBar/iconLogout.png); /** sprite-ref: xxspritexx_V; sprite-alignment-ltr: left; */
}  阅读全文

posted @ 2010-12-05 12:12 Ke 阅读(203) | 评论 (0)  编辑

config.getServletContext().getRealPath("/")返回NULL的解決辦法
     摘要: java.net.URL url = this.getClass().getResource("/");
String mSchemaPath = url.getFile();
if (mSchemaPath != null || !mSchemaPath.equals("")) {
String separator = "/";
int lastSlash = mSchemaPath.lastIndexOf(separator);
if (lastSlash == -1) {
separator = "\\";
lastSlash = mSchemaPath.lastIndexOf(separator);
}
prefix = mSchemaPath.substring(0, lastSlash);  阅读全文

posted @ 2010-12-03 22:06 Ke 阅读(2402) | 评论 (0)  编辑