随笔 - 6  文章 - 129  trackbacks - 0
<2024年12月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 822215
  • 排名 - 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 阅读(1277) | 评论 (0)  编辑

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

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

将osworkflow example 持久化 jdbcstore (Oracle)

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

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

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

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

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