当前位置: 技术问答>java相关
tag中输出中文的问题
来源: 互联网 发布时间:2015-03-23
本文导语: 1.jsp中有 ExampleView indexTag.java为 string[] indexList; pageContext.getOut().print(""+indexList[i]+""); 如果indexList为中文,在jsp出现的就是??,英文没有问题,怎么回事?怎么解决? | jsp处理中文是...
1.jsp中有
ExampleView
indexTag.java为
string[] indexList;
pageContext.getOut().print("
如果indexList为中文,在jsp出现的就是??,英文没有问题,怎么回事?怎么解决?
ExampleView
indexTag.java为
string[] indexList;
pageContext.getOut().print("
"+indexList[i]+"
");如果indexList为中文,在jsp出现的就是??,英文没有问题,怎么回事?怎么解决?
|
jsp处理中文是有问题;可以再加上
这样可以解决在jsp中中文问题。
如实传过来的中文参数:可以用下面的函数解决:
public String getStr(String str)
{
try
{
String temp_p=str;
byte[] temp_t=temp_p.getBytes("ISO8859-1");
String temp=new String(temp_t);
return temp;
}
catch(Exception e)
{
}
return "null";
}
用法如下:
String name=getStr(request.getParameter("name"));
这样可以解决在jsp中中文问题。
如实传过来的中文参数:可以用下面的函数解决:
public String getStr(String str)
{
try
{
String temp_p=str;
byte[] temp_t=temp_p.getBytes("ISO8859-1");
String temp=new String(temp_t);
return temp;
}
catch(Exception e)
{
}
return "null";
}
用法如下:
String name=getStr(request.getParameter("name"));
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。