-
Notifications
You must be signed in to change notification settings - Fork 0
/
EcritureFichier.java
111 lines (96 loc) · 2.55 KB
/
EcritureFichier.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import java.io.*;
import java.util.ArrayList;
/**
* classe EcritureFichier en charge d'ecrire dans un fichier
*/
public class EcritureFichier {
/**
* nom du fichier dans lequel ecrire
*/
String nom;
/**
* objet en chareg d'ecrire
*/
FileWriter fw;
/**
* constructeur de l'objet en charge d'ecrire dans fichier
*
* @param nom nom du fichier dans lequel ecrire
*/
public EcritureFichier(String nom) {
this.nom = nom;
}
/**
* ouvre le fichier en ecriture (ecrase le ficher existant)
*/
public void ouvrirFichier(){
try{
File f = new File(this.nom);
this.fw = new FileWriter(f);
}
catch(IOException ioe){
throw new Error("probleme a l'ouverture du fichier "+this.nom);
}
}
/**
* ecrit un chaine dans le fichier
*
* @param chaine a ajouter dans le fichier
*/
public void ecrireChaine(String chaine) {
if (this.fw == null)
throw new Error("il faut d'abord ouvrir le fichier");
try{
this.fw.write(chaine);
}
catch(IOException ioe){
throw new Error("probleme pour ecrire dans le fichier "+this.nom);
}
}
/**
* ecrit dans le fichier
*
* @param ligne chaine a ajouter dans le fichier
*/
public void ecrireLigne(String ligne) {
if (this.fw == null)
throw new Error("il faut d'abord ouvrir le fichier");
try{
this.fw.write(ligne+"\n");
}
catch(IOException ioe){
throw new Error("probleme pour ecrire dans le fichier "+this.nom);
}
}
/**
* ferme et sauve le fichier
*/
public void fermerFichier() {
try{
this.fw.close();
}
catch(IOException ioe){
throw new Error("Probleme a la fermeture du fichier");
}
this.fw = null;
}
/**
* exemple d'utilisation
*/
public static void main(String []args){
// il faut un argument au lancement du programme = nom du fichier
if (args.length != 1) {
throw new Error("le programme attend en argument un nom de fichier");
}
// creation de l'objet pour ecrire
EcritureFichier fichier = new EcritureFichier(args[0]);
// ouverture du ficheir
fichier.ouvrirFichier();
// ecriture de 10 lignes
for (int i = 0; i < 10; i++){
fichier.ecrireLigne("Bonjour, ligne" + i);
}
// fermeture et sauvegarde
fichier.fermerFichier();
}
}