이 문서의 예에서는 Java가 IO 스트림을 기반으로 파일을 읽는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
public static void readFile(){ String pathString = TEST.class.getResource("/simu").getFile(); try { pathString = URLDecoder.decode(pathString, "utf-8"); } catch (UnsupportedEncodingException e1) { e1.printStackTrace(); } System.out.println(pathString); File file = new File(pathString,"test.txt"); InputStream is = null; try { is = new FileInputStream(file); } catch (Exception e) { e.printStackTrace(); } BufferedReader br = new BufferedReader(new InputStreamReader(is)); StringBuffer sb = new StringBuffer(""); String b = ""; try { while((b=br.readLine())!=null){ sb.append(b).append("\n"); } } catch (Exception e) { e.printStackTrace(); } String bb = sb.toString(); System.out.println(bb); }
이 기사가 Java 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.
Java의 IO 스트림 기반 파일 읽기 방법에 대한 더 많은 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!