내 현재 코드 :
try {
FileInputStream fis = new FileInputStream(myFile);
DataInputStream in = new DataInputStream(fis);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
if (line.startsWith("word")) {
// replace line code here
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
… 여기서 myFile은 File 객체입니다.
언제나 그렇듯이, 도움, 예제 또는 제안을 많이 주시면 감사하겠습니다.
감사!