일반적으로 파일 스트림을 통해 txt 파일의 내용을 직접 읽을 수 있지만 때로는 잘못된 문자가 나타날 수 있습니다! 이때 파일 문자 인코딩만 설정하면 됩니다.
public class txttest { /** * 读取txt文件的内容 * @param file 想要读取的文件对象 * @return 返回文件内容 */ public static String txt2String(File file){ StringBuilder result = new StringBuilder(); try{ BufferedReader br = new BufferedReader(new FileReader(file));//构造一个BufferedReader类来读取文件 String s = null; while((s = br.readLine())!=null){//使用readLine方法,一次读一行 result.append(System.lineSeparator()+s); } br.close(); }catch(Exception e){ e.printStackTrace(); } return result.toString(); } public static void main(String[] args){ File file = new File("D:/errlog.txt"); System.out.println(txt2String(file)); } }
파일 읽기 효과:
위 내용은 모두의 학습에 도움이 되기를 바랍니다. 모두가 PHP 중국어를 지원하기를 바랍니다.
txt 파일의 내용을 읽는 더 많은 JAVA 방법을 보려면 PHP 중국어 웹사이트를 참고하세요!