Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Servlet/JSP/JSF/JavaFX Script
打印话题 寄给朋友 订阅主题 |
作者 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! [Re:wdlfellow] |
rebirth
发贴: 17 |
于 2004-09-02 17:03
关于转码问题,贴个简单的类上来方便使用。 public class CHARSET { public CHARSET() { } public static String ISO2GBK(String s) throws Exception { if(s == null || s.trim().equals("")) { return ""; } else { String s1 = new String(s.getBytes("ISO-8859-1"), "GBK"); return s1; } } public static String ISO2GB2312(String s) throws Exception { if(s == null || s.trim().equals("")) { return ""; } else { String s1 = new String(s.getBytes("ISO-8859-1"), "GB2312"); return s1; } } public static String ISO2BIG5(String s) throws Exception { if(s == null || s.trim().equals("")) { return s; } else { String s1 = new String(s.getBytes("ISO-8859-1"), "BIG5"); return s1; } } public static String GBK2ISO(String s) throws Exception { if(s == null || s.trim().equals("")) { return s; } else { String s1 = new String(s.getBytes("GBK"), "ISO-8859-1"); return s1; } } public static String GB23122ISO(String s) throws Exception { if(s == null || s.trim().equals("")) { return s; } else { String s1 = new String(s.getBytes("GB2312"), "ISO-8859-1"); return s1; } } public static String BIG52ISO(String s) throws Exception { if(s == null || s.trim().equals("")) { return s; } else { String s1 = new String(s.getBytes("BIG5"), "ISO-8859-1"); return s1; } } public static String GBK2BIG5(String s) throws Exception { if(s == null || s.trim().equals("")) { return s; } else { String s1 = ISO2BIG5(GBK2ISO(s)); return s1; } } public static String GB23122BIG5(String s) throws Exception { if(s == null || s.trim().equals("")) { return s; } else { String s1 = ISO2BIG5(GB23122ISO(s)); return s1; } } }
rebirth edited on 2004-09-02 17:05
有了Swing为什么还要SWT? |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
2868 | jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | wdlfellow | 35 | 2004-08-24 11:25 |
2124 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | zcs_75 | 49 | 2004-08-25 11:00 |
2106 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | 周轻舟 | 78 | 2004-08-31 10:21 |
2273 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | bluedest | 128 | 2004-09-01 10:58 |
2108 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | samuelxp | 182 | 2004-09-01 14:00 |
2110 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | 周轻舟 | 125 | 2004-09-02 11:21 |
2688 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | rebirth | 2450 | 2004-09-02 17:03 |
2195 | Re:jsp中文显示的问题有解决办法了吗?我试了前辈说的但是没用,求救!!! | ming500 | 5 | 2004-09-15 18:46 |
2236 | Re:rebirth | sunzy19810705 | 28 | 2004-09-16 08:47 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |