首页 服务器 编程 必备知识 搜索引擎 圩日手册
站内搜索
最近浏览
推荐文章
热文排行

JSP中处理中文传递的代码


<%!
// 处理中文的函数

public String chstr(String str){ 
   try{
     String temp_p=str;
     if(temp_p==null){temp_p="";}
     byte[] temp_t=temp_p.getBytes("ISO-8859-1");
    String temp=new String(temp_t); 
    return temp;
  }catch(Exception e){
    return "null";
  } 
}
%>

放在接受文件头就可以.

[wangjy17908]
添加时间:2007-08-03
版权所有(C)2005-2015