String str1="你好";
String str2= new String(str1.getBytes(),"UTF-8");

解决方案 »

  1.   

    是呀,而且不能用gb,必须用utf8
    因为是显示在手机上,但就是不能转:(((
      

  2.   

    String sss ="你";
    String line = new String(sss.getBytes("ISO-8859-1"),"GBK");
    or
    String line = new String(sss.getBytes("gb2312"));别的不会了!^&^
      

  3.   

        String str1="你好";
        try{
          String str2= new String(str1.getBytes(),"UTF-8");
          System.out.println(str2);
        }catch(Exception e){
          System.out.println(e.getMessage());
        }
      

  4.   

    没报错,就是没效果,str2是个空串
      

  5.   

    Character EncodingsVarious constructors and methods in the java.lang and java.io packages accept string arguments that specify the character encoding to be used when converting between raw eight-bit bytes and sixteen-bit Unicode characters. Such encodings are named by strings composed of the following characters:The uppercase letters 'A' through 'Z' ('\u0041' through '\u005a'), 
    The lowercase letters 'a' through 'z' ('\u0061' through '\u007a'), 
    The digits '0' through '9' ('\u0030' through '\u0039'), 
    The dash character '-' ('\u002d', HYPHEN-MINUS), 
    The colon character ':' ('\u003a', COLON), and 
    The underscore character '_' ('\u005f', LOW LINE).An encoding name must begin with either a letter or a digit. The empty string is not a legal encoding name.An encoding may have more than one name. One of an encoding's names is considered to be its canonical name. The canonical name of an encoding is the name returned by the getEncoding methods of the InputStreamReader and OutputStreamWriter classes.Encoding names generally follow the conventions documented in RFC2278: IANA Charset Registration Procedures. If an encoding listed in the IANA Charset Registry is supported by an implementation of the Java platform then one of its names must be the name listed in the registry. Many encodings are given more than one name in the registry, in which case the registry identifies one of the names as MIME-preferred. An implementation of the Java platform must support the MIME-preferred registry name for a supported encoding if there is one; for convenience it may additionally support other registry names. The IANA MIME-preferred name of an encoding, if there is one, is often, but not necessarily, its canonical name. Following IANA convention, the mapping from IANA registry names to encodings is not case-sensitive.Every implementation of the Java platform is required to support the following character encodings. Consult the release documentation for your implementation to see if any other encodings are supported.
    US-ASCII Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set
    ISO-8859-1   ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1
    UTF-8 Eight-bit Unicode Transformation Format
    UTF-16BE Sixteen-bit Unicode Transformation Format, big-endian byte order
    UTF-16LE Sixteen-bit Unicode Transformation Format, little-endian byte order
    UTF-16 Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial byte-order  (either order accepted on input, big-endian used on output)
    The various Unicode Transformation Formats are described in detail in The Unicode Standard and in the Unicode FAQ.Every instance of the Java virtual machine has a default character encoding. The default encoding is determined during virtual-machine startup and typically depends upon the locale and encoding being used by the underlying operating system.