一个Java中的中文字符串处理函数
发布时间:2013-09-30 17:34 来源/作者:藕码网 分类:其他
TAG标签:
本文介绍一个Java中的中文字符串处理函数。
- 运行环境:JDK1.6+Tomcat6.0 + Eclipse
- 授权方式:开源
- 下载积分:免费
- 推荐等级:★★★
- 更新时间:2013-09-30
- 演示地址:暂无
- 代码详情
- 用户评论
- 相关代码
-
本文介绍一个Java中的中文字符串处理函数。
示例代码:
public String getStr(String string){
try{
String temp_p=string;
byte[] temp_t=temp_p.getBytes("ISO8859-1");
String temp=new String(temp_t);
return temp;
}catch(Exception e){}
return "null";
} -
最新评论
菜单/ Menu
热门下载/ HOT