当我们在BufferedReader没有明确提供编码的情况下创建新对象时,Java 默认使用什么编码/字符集?
例如:
try (final BufferedReader reader = new BufferedReader(new FileReader("my_file.txt"))) {
reader.readLine(); // What encoding is used to read the file?
}
长风秋雁
相关分类