Comment Afficher un Fichier (.txt)dans un Onglet?
Bonjour
J'ai créé ça
Code:
JTabbedPane onglet = new JTabbedPane();
Pour avoir des onglets ..
dans l'un des onglets je veux afficher (txt) j'ai essayé ça (mais c'est null ça n'a pas marché:oops: )
Code:
1 2 3 4 5 6
| JEditorPane description = new JEditorPane();
apropos.setEditable(false);
File descriptionfichier=new File("description.txt");//j'ai ouvert un fich
apropos.setText("description.txt");//je sais que c'est pas set text mais j'ai pas trouvé une autre fonction
onglet.addTab("à Propos", new JScrollPane(apropos)); |
Merci de votre aide :?