Pages

Kamis, 08 Maret 2012

Write File

package testjeni;

/**
 *
 * @author emund
 */

    import java.io.*;
class WriteFile {
public static void main(String args[]) throws IOException {
System.out.println("What is the name of the file to be written to?");
String filename;
BufferedReader br = new BufferedReader(new
InputStreamReader(System.in));
filename = br.readLine();
System.out.println("Enter data to write to " + filename +
"...");
System.out.println("Type q$ to end.");
FileOutputStream fos = null;
try {
fos = new FileOutputStream(filename);
} catch (FileNotFoundException ex) {
System.out.println("File cannot be opened for writing.");
}
try {
boolean done = false;
int data;
do {
data = br.read();
if ((char)data == ' ') {
data = br.read();
if ((char)data == '$') {
done = true;
} else {
fos.write('_');
fos.write(data);
}
} else {
fos.write(data);
}
} while (!done);
} catch (IOException ex) {
System.out.println("Problem in reading from the file.");
}
}
}




*jangan lupa sediakan satu file notepad juga di D atau E yang kosong , untuk dituliskan di notepad ini sebagai hasil dari program ini


*contoh outputnya adalah

hay_namaku_emunda_primadiayu_putri_q$
q$
;
$


0 komentar:

Posting Komentar

Twitter Delicious Facebook Digg Stumbleupon Favorites More