Bonjour.
J'ai un JTextArea nommé textArea. J'aimerais avoir une barre ou quelque chose du genre (comme dans l'IDE NetBeans) qui me nummérote les lignes.
Comme puis-je faire ? Je n'ais pas d'idée et je ne vois du tout.
Merci d'avance.

La source:
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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*
 * fenetre.java
 *
 * Created on 4 juillet 2006, 16:23
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */
 
package notepad;
 
import javax.swing.*;
import java.awt.*;
import java.awt.print.*;
import java.awt.event.*;
import java.io.*;
import java.awt.print.*;
 
import notepad.perifs.*;
import notepad.perifs;
 
//import notepad.events.;
 
/**
 *
 * @author razord
 */
public class fenetre{
 
    public static JTextArea textArea = new JTextArea();
    public static JFrame frame = new JFrame("Notepad");
 
    /** Creates a new instance of fenetre */
    public static void nouvelle_fenetre(){
        //Make sure we have nice window decorations.
        JFrame.setDefaultLookAndFeelDecorated(true);
 
        //Create and set up the window.
 
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 
        //Add and set up the scroll pane (for textArea).
        JScrollPane scrollPane = new JScrollPane(textArea);
        scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
        frame.getContentPane().add(scrollPane);
 
        //Create menus's variables.
        JMenuBar menuBar;
        JMenu menuFichier, menuEdition, menuAffichage;
        JMenuItem menuSave, menuLoad, menuQuit, menuFontSize, menuFontType, menuPrint, menuLine;
        JCheckBoxMenuItem cbLineWrap, cbLineCounter;
 
 
        /*
         *MENU******************************************************************
         */
        //Create menus
        menuBar = new JMenuBar();
 
        //Build the FILE menu.
        menuFichier = new JMenu("Fichier");
        menuFichier.setMnemonic(KeyEvent.VK_F);
        menuBar.add(menuFichier);
 
        //Build the EDIT menu.
        menuEdition = new JMenu("Edition");
        menuEdition.setMnemonic(KeyEvent.VK_E);
        menuBar.add(menuEdition);
 
        //Build the VIEW menu.
        menuAffichage = new JMenu("Affichage");
        menuAffichage.setMnemonic(KeyEvent.VK_A);
        menuBar.add(menuAffichage);
 
        //Save menu
        menuSave = new JMenuItem("Sauvegarder");
        menuFichier.add(menuSave);
 
        //Load menu
        menuLoad = new JMenuItem("Charger");
        menuFichier.add(menuLoad);
 
        //Separator
        menuFichier.addSeparator();
 
        //Quit menu
        menuQuit = new JMenuItem("Quitter");
        menuFichier.add(menuQuit);
 
        //Print menu
        menuPrint = new JMenuItem("Imprimmer");
        menuEdition.add(menuPrint);
 
        //FontType menu
        menuFontType = new JMenuItem("Police");
        menuAffichage.add(menuFontType);
 
        //Wrap menu
        cbLineWrap = new JCheckBoxMenuItem("Retour à la ligne automatique");
        menuAffichage.add(cbLineWrap);
 
        cbLineCounter = new JCheckBoxMenuItem("Afficher les numéros de lignes");
        menuAffichage.add(cbLineCounter);
 
        //Add menubar to the frame
        frame.setJMenuBar(menuBar);
 
        /*
         *******************************************************************MENU
         *EVENTS****************************************************************
         */
        menuQuit.addActionListener(
                    new ActionListener() { 
                        public void actionPerformed(ActionEvent e) {
                            System.exit(0);
                        }
                    }
                );
 
        menuFontType.addActionListener(
                    new ActionListener(){
                        public void actionPerformed(ActionEvent e){
                            Font font = textArea.getFont();
                            String fontName = JOptionPane.showInputDialog(null,"Nom de la police:",font.getName());
                            String fontStyle = JOptionPane.showInputDialog(null, "Style de la police:",font.getStyle());
                            String fontsize = JOptionPane.showInputDialog(null, "Taille de la police:", font.getSize());
                            Font newFont = new Font(fontName, Integer.parseInt(fontStyle), Integer.parseInt(fontsize));
                            textArea.setFont(newFont);
                        }
                    }
                );
 
        cbLineWrap.addItemListener(
                    new ItemListener(){
                        public void itemStateChanged(ItemEvent e){
                            if(e.getStateChange() == ItemEvent.DESELECTED){
                                textArea.setLineWrap(false);
                                textArea.setWrapStyleWord(false);
                            }
                            if(e.getStateChange() == ItemEvent.SELECTED){
                                textArea.setLineWrap(true);
                                textArea.setWrapStyleWord(true);
                            }
                        }
                    }
                );
 
        menuPrint.addActionListener(
                    new ActionListener(){
                        public void actionPerformed(ActionEvent e){
                            PrinterJob tache = PrinterJob.getPrinterJob();
                            //tache.setPrintable(new perifs.perifs("Ceci est un teste d?impression en java!"));
    //printDialog affiche la fenetre de sélection de l?imprimante, etc...
    //il retourne true si on clique sur "Ok", false si on clique sur "Annuler"
                            if(! tache.printDialog()) return;
                            try {
                                tache.print();
                            } catch(Exception ep) {
                                System.out.println("impossible d?imprimer");
                            }
                        }
                    }
                );
 
        menuLoad.addActionListener(
                    new ActionListener(){
                        public void actionPerformed(ActionEvent e){
                            JFileChooser choix = new JFileChooser();
                            int retour = choix.showOpenDialog(frame);
                            if(retour == JFileChooser.APPROVE_OPTION) {
                                choix.getSelectedFile().getName();       // nom du fichier 
                                String chemin_use = choix.getSelectedFile().getAbsolutePath();// chemin absolu du
                                BufferedReader lecteurAvecBuffer = null;
                                String ligne;
                                try {
                                    lecteurAvecBuffer = new BufferedReader(new FileReader(chemin_use));
                                    while ((ligne = lecteurAvecBuffer.readLine()) != null)
                                        textArea.setText(textArea.getText()+"\n"+ligne);
                                    lecteurAvecBuffer.close();
                                }
                                catch(java.io.IOException exc)
                                {
                                    System.out.println("Erreur d'utilisation du fichier");
                                }
                            } else ;
                        }
                    }
                );
 
        menuSave.addActionListener(
                    new ActionListener(){
                        public void actionPerformed(ActionEvent e){
                            JFileChooser choix = new JFileChooser();
                            int retour = choix.showSaveDialog(frame);
                            if(retour == JFileChooser.APPROVE_OPTION) {
                                choix.getSelectedFile().getName();       // nom du fichier 
                                String chemin_use = choix.getSelectedFile().getAbsolutePath();// chemin absolu du
                                PrintWriter ecrivain;
                                String ligne;
                                try {
                                    ecrivain =  new PrintWriter(new BufferedWriter(new FileWriter(chemin_use)));
                                    ecrivain.print(textArea.getText());
                                    ecrivain.close();
                                }
                                catch(java.io.IOException exc)
                                {
                                    System.out.println("Erreur d'utilisation du fichier");
                                }
                            } else ;
                        }
                    }
                );
 
        /*
         *****************************************************************EVENTS
         */
 
        //Display the window.
        frame.pack();
        frame.setVisible(true);
    }
}
 
class perifs implements Printable
{
    String phrase;
 
    public void perifs(String phrase)
    {
        this.phrase = phrase;
    }
 
    public int print(Graphics g, PageFormat pf, int indexPage)
    {
        if(indexPage > 0) return NO_SUCH_PAGE;
        Graphics2D g2 = (Graphics2D)g;
        g2.setPaint(Color.blue);
        g2.setFont(new Font("Serif", Font.PLAIN, 64));
        g2.drawString(phrase, 96, 144);
        return PAGE_EXISTS;
    }
}