我正在使用以下方法将字符串从文件加载到变量。
private static String readFile(String path) throws IOException {
FileInputStream stream = new FileInputStream(new File(path));
try {
FileChannel fc = stream.getChannel();
MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
/* Instead of using default, pass in a decoder. */
return Charset.defaultCharset().decode(bb).toString();
}
finally {
stream.close();
}
}
问题是我的变量中有转义字符。我希望我的变量包含:
some string
但它看起来像:
some string
我该如何改进我的方法以不允许这样做?