在Java中,可以使用以下方法来查看字符串的编码格式:
String str = "Hello World!";
byte[] bytes = str.getBytes(); // 使用默认编码方式
System.out.println(Arrays.toString(bytes));
String str = "Hello World!";
Charset charset = Charset.forName("UTF-8"); // 指定编码为UTF-8
byte[] bytes = str.getBytes(charset);
System.out.println(Arrays.toString(bytes));
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CodingErrorAction;
import java.nio.ByteBuffer;
String str = "Hello World!";
CharsetDecoder decoder = Charset.forName("UTF-8").newDecoder();
decoder.onMalformedInput(CodingErrorAction.IGNORE);
decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
ByteBuffer buffer = ByteBuffer.wrap(str.getBytes());
String decodedStr = decoder.decode(buffer).toString();
System.out.println(decodedStr);
以上方法可以帮助你查看字符串的编码格式。注意,在使用getBytes()方法或者String的构造函数时,如果不指定编码方式,默认会使用平台的默认编码方式。