import java.io.*;
/**
* Programa per a enregistrar al disc deu nombres enters
*/
public class EnregistraEnters {
public static void main(String[] args) throws IOException {
FileOutputStream fitxer = new FileOutputStream(
"enters.dat");
DataOutputStream filtre = new DataOutputStream(fitxer);
try {
for (int n=0; n<10; n++) { filtre.writeBytes(n+"\n"); }
}
catch (IOException e) {
System.out.println(e.getMessage()); }
finally {
fitxer.close(); }
}
}
Al fitxer s'hi guarden els següents nombres
0
1
2
3
4
5
6
7
8
9
[autoría]
No hay comentarios:
Publicar un comentario
Gracias por tus comentarios