如何使用Java读取文件中的行而不会丢失标签,开头的空格(缩进)?我需要这个来读取源代码而不是将其打印出来。
我这样做:
br = new BufferedReader(new FileReader(filePath));
String line = null;
while ((line = br.readLine()) != null) {
aList.add(line);
}
(当然使用try catch blocks)
谢谢!