bonjour,
voici ma classe :
Lorsque je l'execute plusieurs fois, je veux que cela ecrive a la suite, ou me suis-je trompé ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 import java.awt.event.KeyEvent; import java.io.File; import java.io.FileWriter; public class KeyLogger { public File f; public FileWriter write; public KeyLogger(String s) { try { boolean b; f=new File(s); if(!f.exists()) { b=f.createNewFile(); } write=new FileWriter(f); } catch(Exception e) { System.out.println("erreur de création de fichier"); } } public void keyPressed(KeyEvent e) { //char c=getKeyChar(); } public void test() { try { write.write(Character.toString('c')); } catch(Exception e) { System.out.println("erreur d'ecriture de fichier"); } } public void flushStream() { try { write.flush(); } catch(Exception e) { System.out.println("erreur de flush"); } } public void closeStream() { try { write.close(); } catch (Exception e) { System.out.println("Erreur de fermeture de fichier"); } } public static void main(String []args) { KeyLogger k=new KeyLogger("test.txt"); k.test(); k.closeStream(); System.out.println("ca marche"); } }
merci
mavina
Partager