当前位置:  技术问答>java相关

请给个思路!

    来源: 互联网  发布时间:2015-06-10

    本文导语:  怎样实现网站的简体,繁体和英文的转换! | public static String unicodeToGB(String strIn) throws Exception {     String strOut = null;     if(strIn == null || (strIn.trim()).equals(""))       return strIn; ...

怎样实现网站的简体,繁体和英文的转换!

|
public static String unicodeToGB(String strIn) throws Exception {
    String strOut = null;
    if(strIn == null || (strIn.trim()).equals(""))
      return strIn;
    byte[] b = strIn.getBytes("GBK");
    strOut = new String(b,"ISO8859_1");
    return strOut;
  }

  public static String GBToUnicode(String strIn) throws Exception {
    String strOut = null;
    if(strIn == null || (strIn.trim()).equals(""))return strIn;
    byte[] b = strIn.getBytes("ISO8859_1");
    strOut = new String(b,"GBK");
    return strOut;
  }
中英转换,繁体类似,转换成相映的编码就可以了

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Windows C/ C++堆相关问题及解决思路
  • 求一种网站新闻管理程序的思路!
  • 求教电子合同的思路.
  • 谁能给我讲一下收邮件的思路?
  • 想用c写一个Httpserver,大家给点思路啊!!
  • 写调试器(像gdb)的一般思路是什么
  • 请大牛指导程序思路
  • 设计一个Linux的存储策略,求思路
  • 毕设题《linux下IPv6的流量监测控制系统》 求基础 求思路 求意见
  • 用GTK+怎么让treeview控件带上背景图片?哪位高人给个思路?
  • 开放平台设计思路 Rop
  • 给个思路吧,好迷茫
  • 各老大:有没有图像放大或压缩算法?或思路?
  • 操作系统 iis7站长之家
  • 请问一个程序的思路,方法
  • jquery easyui表单重置扩展思路
  • mysql获得60天前unix时间思路及代码
  • 我要实现这样的功能,请各位给点思路
  • 请问怎么在java的控件里画条线?思路,过程?谢谢
  • !!!想用java来做一个动画设计软件,欢迎提点思路
  • 编写把一java程序中所有的print语句都删除,帮忙分析一下思路。


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3