int readnationfile(){
Scanner filein = null;
try {
File file = new File("nation.txt");
filein = new Scanner(file);
} catch (FileNotFoundException e) {
System.out.println("파일 없음...");
}
while (filein.hasNext()) {
list1[count].read(filein);
count++;
}
int nationnum = count;
count = 0;
return nationnum;
}
제가 파일 입력하는 부분의 함수이고요
read();함수로 스케너 받아서 저장하는 방법입니다..
저장한 파일 그대로 또 읽을수 있게 만들고 싶은데요..
인터넷에는 버퍼인가를 이용한 저장 밖에 없더라구요...
위 함수와 비슷한 방식으로 텍스트 파일로 저장할수 없을까요??