Os:windows7 x64
Jdk:jdk-8u131-windows-x64
Ide:eclipse Oxygen Release (4.7.0)
Code
Package Jizuiku0;import java.io.unsupportedencodingexception;/* * @version V17.09 */public class Codedemo {public static void Main (string[] args) {//Specifies the name of the character set to use, using the UTF-8 character set String Mycharset = "UTF-8"; string str = "blog Park"; byte[] Bs;try {//encodes a string according to the specified character set bs = Str.getbytes (Mycharset);//Decodes a string based on the specified character set string newstr = new String (BS, Mycharset); System.out.println (NEWSTR);} catch (Unsupportedencodingexception e) {//TODO auto-generated catch Blocke.printstacktrace ();}}}
Result
Java is good, worth learning.
Learning Resources: API manual + Java source code + pure heart.
JavaSE8 the base string to encode a byte array to decode