import java.io.*;
public class cobaSimpan {
public static void main(String[] args) throws FileNotFoundException, IOException {
Document test = new Document("coba1.txt");
String subjek[] = {"saya", "adik"};
String predikat[] = {"makan", "mimum"};
String objek[] = {"Soto", "susu"};
for (int i = 0; i < subjek.length; i++) {
test.setTeks(test.getTeks() + subjek[i] + "\t" + predikat[i] + "\t" + objek[i] + "\n");
}
test.simpan();
}
}
Tidak ada komentar:
Posting Komentar