- 浏览: 8025 次
- 性别:
- 来自: 北京
最新评论
文章列表
一。FCKeditor上传文件名为中文的文件时显示乱码
1.找到并拷贝ConnectServlet源文件到自己的src包目录下
2.在web.xml中修改<servlet-class>为重新拷贝复写的ConnectServlet
3.在ServletFileUpload upload = new ServletUpload(factory);
前加上upload.setHeaderEncoding("UTF-8");
二.FCKEditor在创建服务器目录时显示乱码
在ConnectServlet找到
String newFolderStr = Ut ...
- 2009-06-17 17:20
- 浏览 1051
- 评论(0)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=u ...
- 2009-06-08 17:23
- 浏览 1244
- 评论(0)
public static String[] getStrings(String str) {
List<String> result = new ArrayList<String>();
Pattern p = Pattern.compile("java(.+?)mojp");
Matcher m = p.matcher(str);
while (m.find()) {
result.add(m.group(1));
}
return resul ...
- 2009-06-03 17:04
- 浏览 924
- 评论(0)
PV是什么 IP是什么 UV是什么 IP是什么 PR是什么2009-05-06 10:56今天看到雅虎统计工具改版了,增加了一个UV。所以今天来跟大家分享下PV IP UV IP的区别。
什么是PV:
PV是page view的简写。PV是指页面刷新的次数,每一次页面刷新,就算 ...
- 2009-06-03 16:55
- 浏览 2918
- 评论(0)