텍스트 파일을 읽는 샘플 프로그램
public String readFile(String filename) {
String string="";
//reading
try{
InputStream ips = new FileInputStream(filename);
InputStreamReader ipsr = new InputStreamReader(ips,"euc-kr");
BufferedReader br = new BufferedReader(ipsr);
String line;
while ((line=br.readLine())!=null){
//System.out.println(line);
string += line+"\n";
}
br.close();
}
catch (Exception e){
System.out.println(e.toString());
}
//System.out.println(string);
return string;
}
'컴퓨터활용 > 자바' 카테고리의 다른 글
HttpURLConnection 할 때 setConnectTimeout 해 줘야 함 (2) | 2013.12.30 |
---|---|
이클립스에서 한글 깨지는 파일 처리 (0) | 2013.12.29 |
키보드로 값을 입력받아서 출력 (0) | 2013.07.17 |
JEUSMain.xml 과 web.xml (0) | 2012.06.07 |
ORA-00604 나 ORA-01000 오류가 날 때 (2) | 2012.05.29 |