Encode String to UTF-8

后端 未结 11 1907
忘掉有多难
忘掉有多难 2020-11-22 08:33

I have a String with a \"ñ\" character and I have some problems with it. I need to encode this String to UTF-8 encoding. I have tried it by this way, but it doesn\'t work:

11条回答
  •  深忆病人
    2020-11-22 09:16

    I have use below code to encode the special character by specifying encode format.

    String text = "This is an example é";
    byte[] byteText = text.getBytes(Charset.forName("UTF-8"));
    //To get original string from byte.
    String originalString= new String(byteText , "UTF-8");
    

提交回复
热议问题