검색결과 리스트
글
무슨 파일 읽어오고 수정하고 그런거..
package file;
import java.util.Scanner;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
public class Program {
public static void main(String[] args) throws IOException {
FileInputStream fin = new FileInputStream // 파일 경로??
("D:\\java\\workspace\\javaprj\\src\\calendar\\Program.java");
// 백슬러시 두번씩 해줘야 한다.
Scanner fscan = new Scanner(fin); //fin 파일을 읽어온다(?)
FileOutputStream fout = new FileOutputStream("d:\\date.txt"); // d드라이브에 텍스트 파일 생성
PrintStream out = new PrintStream(fout); // 출력 스트림
for(int i=0;fscan.hasNext();i++)// hasNext 다음에 읽어올 줄이 있으면 true해서 읽어오고 없으면 false
{
//읽기
String line = fscan.nextLine(); // input 스트림으로 읽어와서
//조작
line=line.replace("int", "정수"); //int 를 정수로 바까쥼
//아웃
out.println(i++ +" "+line); // 라인 읽어온것을 보여준다, 각 라인에 숫자
}
out.close(); // 문을 닫아줘야한다. 안하면 다른곳에서 실행하고 있다는 오류
fout.close();
fscan.close();
fin.close();
}
}
'개발 > 코딩' 카테고리의 다른 글
get,set이용해서 성적입력. (0) | 2013.10.01 |
---|---|
입력 단어와 일치하면 그 라인에 있는 문자 출력하기(자막) (0) | 2013.09.30 |
성적입력(최종) (0) | 2013.09.26 |
성적관리->> 함수 쓰고, 클래스 써서 (0) | 2013.09.25 |
함수쓰는거 업그레이드 (0) | 2013.09.24 |