JEditorPane, NullPointerException au chargement du toolkit

JEditorPane, NullPointerException au chargement du toolkit - Java - Programmation

Marsh Posté le 10-12-2003 à 23:22:28    

Je ne m'explique pas ce gros paté :

Code :
  1. [java] java.lang.NullPointerException
  2.      [java]     at java.util.Hashtable.put(Hashtable.java:389)
  3.      [java]     at javax.swing.JEditorPane.registerEditorKitForContentType(JEditorPane.java:1129)
  4.      [java]     at javax.swing.JEditorPane.registerEditorKitForContentType(JEditorPane.java:1111)
  5.      [java]     at javax.swing.JEditorPane.loadDefaultKitsIfNecessary(JEditorPane.java:1176)
  6.      [java]     at javax.swing.JEditorPane.getKitTypeRegistry(JEditorPane.java:1146)
  7.      [java]     at javax.swing.JEditorPane.createEditorKitForContentType(JEditorPane.java:1071)
  8.      [java]     at javax.swing.JEditorPane.getEditorKitForContentType(JEditorPane.java:975)
  9.      [java]     at javax.swing.JEditorPane.setContentType(JEditorPane.java:869)
  10.      [java]     at org.jchat.ui.ChatArea.<init>(ChatArea.java:91)
  11.      [java]     at org.jchat.ui.AbstractPanel$1.<init>(AbstractPanel.java:106)
  12.      [java]     at org.jchat.ui.AbstractPanel.<init>(AbstractPanel.java:101)
  13.      [java]     at org.jchat.ui.PrivatePanel.<init>(PrivatePanel.java:57)
  14.      [java]     at org.jchat.ui.Main.addPrivatePanel(Main.java:253)
  15.      [java]     at org.jchat.ui.Main.<init>(Main.java:236)
  16.      [java]     at org.jchat.ui.JChat.connect(JChat.java:314)
  17.      [java]     at org.jchat.ui.ServerFolder.run(ServerFolder.java:374)
  18.      [java]     at java.lang.Thread.run(Thread.java:554)


le code est :

Code :
  1. public ChatArea(Smiley smiley) {
  2.      this.smiley=smiley;
  3.         style = new SimpleAttributeSet();
  4.         StyleConstants.setForeground(style, Color.black);
  5.         StyleConstants.setBackground(style, Color.white);
  6.         StyleConstants.setFontSize(style, 12);
  7.         StyleConstants.setFontFamily(style, "Verdana" );
  8.         this.setContentType("text/rtf" );      // <- ligne 91
  9.         this.setEditorKit(new RTFEditorKit());


 
le code complet est là :
http://cvs.sourceforge.net/viewcvs [...] &view=auto
 
auriez-vous une explication ?
ça n'apparait pas à chaque fois.


---------------
trainoo.com, c'est fini
Reply

Marsh Posté le 10-12-2003 à 23:22:28   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed