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

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 815449
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2011 档案

java.io.CharConversionException: Not an ISO 8859-1 character: xx
     摘要: 这个问题是因为outputstream输出中文字造成的.换成Writer就好了。outputstream是以字节为单位输出字符串的,需要符合那个ISO 8859-1编码
response.setContentType("text/html;charset=UTF-8");
//response.getOutputStream().print("中文字"); //这行会出错
response.getWriter().print("中文字"); //换成这个就好了
response.getWriter().close();
  阅读全文

posted @ 2011-12-21 15:26 Ke 阅读(1237) | 评论 (0)  编辑

关于ExtJS中的mask和unmask
     摘要: 为了在发起某一事件后,阻止用户对界面的进行操作,可以使用ExtJS提供的针对Ext.Element的mask和unmask   阅读全文

posted @ 2011-12-21 10:29 Ke 阅读(2035) | 评论 (0)  编辑

将osworkflow example 持久化 jdbcstore (Oracle)

posted @ 2011-12-16 16:32 Ke 阅读(524) | 评论 (0)  编辑

linux JDK 三种配置环境变量的方法

posted @ 2011-12-12 08:22 Ke 阅读(545) | 评论 (0)  编辑

Redhat 安装JDK(轉)
     摘要: 安裝JDK  阅读全文

posted @ 2011-12-10 10:13 Ke 阅读(2590) | 评论 (0)  编辑