텍스트파일 입력
String 배열의 길이는 str.length 로 한다.
String file_path = 파일경로; File inFile = new File(file_path); if (inFile.exists()) { System.out.println("input file: " + file_path); BufferedReader ib = new BufferedReader(new FileReader(inFile)); String line = null; while ((line = ib.readLine()) != null) { // 파일 한줄을 읽어온다. line = line.trim(); String[] arr = line.split("\t"); if (arr.length == 2) { } } } else { // 파일이 존재 않는 다면.. }
String 배열의 길이는 str.length 로 한다.
'Technology > Programming' 카테고리의 다른 글
Python / 파이썬 이차원배열 (0) | 2011.01.19 |
---|---|
Python / 파일 읽기, 파일 쓰기 (0) | 2011.01.14 |
Tools / 티스토리(Tistory)에 SyntaxHighlighter 3.0 적용하기 (0) | 2011.01.14 |
JSP / XML, XSL를 이용하여 HTML 변환하기(Transform) (0) | 2010.12.27 |
Python / Python 예외처리 (0) | 2010.11.02 |