本文主要是介绍JAVA读取txt文件,并且保留空格,换行符,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
package com;
import java.io.File;
import java.io.FileInputStream;
public class FileUtils {
public static void main(String args[]) {
readFileByLines("F:\\study\\a\\新建文件夹\\按摩\\back.txt");
}
public static void readFileByLines(String fileName) {
try {
File file = new File(fileName); // 要读取以上路径的input。txt文件
System.out.println(file.getName());
byte[] bytes = new byte[1024];
StringBuffer sb = new StringBuffer();
FileInputStream in = new FileInputStream(file);
int len;
while ((len = in.read(bytes)) != -1) {
sb.append(new String(bytes, 0, len));
}
System.out.println(sb.toString());
} catch (Exception e) {
}
}
}
这篇关于JAVA读取txt文件,并且保留空格,换行符的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!