473,662 Members | 2,390 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

NullPointerExce ption in Applet

37 New Member
Hi all,

Thanks in advance. I am new at Java. Currently I'm having two java files one is applet. when i try to preview the applet i get an error like this :

java.lang.NullP ointerException
at java.util.Hasht able.put(Unknow n Source)
at javax.swing.JEd itorPane.regist erEditorKitForC ontentType(Unkn own Source)
at javax.swing.JEd itorPane.regist erEditorKitForC ontentType(Unkn own Source)
at javax.swing.JEd itorPane.loadDe faultKitsIfNece ssary(Unknown Source)
at javax.swing.JEd itorPane.getKit TypeRegistry(Un known Source)
at javax.swing.JEd itorPane.getEdi torKitClassName ForContentType( Unknown Source)
at javax.swing.JTe xtPane.<init>(U nknown Source)

what i'm doing wrong?pls help me guys...thanks
Aug 15 '07 #1
21 4031
JosAH
11,448 Recognized Expert MVP
Can you show a bit of (relevant) code please? btw, I changed your topic titile
to something more to the point.

kind regards,

Jos
Aug 15 '07 #2
nickyeng
254 Contributor
because you pointed to hashtable that doesn't have the key ?

check your code that use that hashtable ...
Aug 15 '07 #3
teenIce
37 New Member
Hi all,

Thanks Josah. Erm, what do you mean by hashtable nick?I don't understand..Sor ry.btw this is my code that call JTextPane

code :

private JTextArea textArea = null;
private JTextPane resultArea = null;
private JComboBox langBox = null;

private Map<Language, ConfigurationDi alog> configDialogs = new HashMap<Languag e, ConfigurationDi alog>();
public void createAndShowGU I(String inputText) {
JFrame frame = new JFrame("Test");
frame.setDefaul tCloseOperation (JFrame.HIDE_ON _CLOSE);

textArea = new JTextArea(input Text);
// TODO: wrong line number is displayed for lines that are wrapped automatically:
textArea.setLin eWrap(true);
textArea.setWra pStyleWord(true );
resultArea = new JTextPane();
resultArea.setC ontentType("tex t/html");
resultArea.setT ext("Results will appear here");
JLabel label = new JLabel("Please type or paste text to check in the top area");
JButton button = new JButton("Check text");
button.setMnemo nic('c');
button.addActio nListener(this) ;
Aug 15 '07 #4
r035198x
13,262 MVP
Hi all,

Thanks Josah. Erm, what do you mean by hashtable nick?I don't understand..Sor ry.btw this is my code that call JTextPane

code :

private JTextArea textArea = null;
private JTextPane resultArea = null;
private JComboBox langBox = null;

private Map<Language, ConfigurationDi alog> configDialogs = new HashMap<Languag e, ConfigurationDi alog>();
public void createAndShowGU I(String inputText) {
JFrame frame = new JFrame("Test");
frame.setDefaul tCloseOperation (JFrame.HIDE_ON _CLOSE);

textArea = new JTextArea(input Text);
// TODO: wrong line number is displayed for lines that are wrapped automatically:
textArea.setLin eWrap(true);
textArea.setWra pStyleWord(true );
resultArea = new JTextPane();
resultArea.setC ontentType("tex t/html");
resultArea.setT ext("Results will appear here");
JLabel label = new JLabel("Please type or paste text to check in the top area");
JButton button = new JButton("Check text");
button.setMnemo nic('c');
button.addActio nListener(this) ;
1.) Please use code tags when posting code.
2.) If you look at that stacktrace again, you'll see that it tells you the exact line number where that exception was thrown. That line and the code lines around it are the relevant code that Jos asked you to post.
Aug 15 '07 #5
teenIce
37 New Member
oh...thanks guys,

ok...here is the code that is relevant to the trace and the full trace

trace :

Expand|Select|Wrap|Line Numbers
  1.  
  2. Java Plug-in 1.6.0_02
  3. Using JRE version 1.6.0_02 Java HotSpot(TM) Client VM
  4. User home directory = C:\Documents and Settings\Administrator
  5. network: Loading user-defined proxy configuration ...
  6. network: Done.
  7. network: Loading proxy configuration from Internet Explorer ...
  8. network: Done.
  9. network: Loading direct proxy configuration ...
  10. network: Done.
  11. network: Proxy Configuration: No proxy
  12.  
  13.  
  14. ----------------------------------------------------
  15. c:   clear console window
  16. f:   finalize objects on finalization queue
  17. g:   garbage collect
  18. h:   display this help message
  19. l:   dump classloader list
  20. m:   print memory usage
  21. o:   trigger logging
  22. p:   reload proxy configuration
  23. q:   hide console
  24. r:   reload policy configuration
  25. s:   dump system and deployment properties
  26. t:   dump thread list
  27. v:   dump thread stack
  28. x:   clear classloader cache
  29. 0-5: set trace level to <n>
  30. ----------------------------------------------------
  31.  
  32. liveconnect: Invoking JS method: document
  33. liveconnect: Invoking JS method: URL
  34. basic: Referencing classloader: sun.plugin.ClassLoaderInfo@12498b5, refcount=1
  35. basic: Added progress listener: sun.plugin.util.GrayBoxPainter@f5da06
  36. basic: Loading applet ...
  37. basic: Initializing applet ...
  38. basic: Starting applet ...
  39. basic: completed perf rollup
  40. liveconnect: Invoking method: public void test.check(java.lang.String)
  41. liveconnect: Needs conversion: java.lang.String --> java.lang.String
  42. java.lang.NullPointerException
  43.     at java.util.Hashtable.put(Unknown Source)
  44.     at javax.swing.JEditorPane.registerEditorKitForContentType(Unknown Source)
  45.     at javax.swing.JEditorPane.registerEditorKitForContentType(Unknown Source)
  46.     at javax.swing.JEditorPane.loadDefaultKitsIfNecessary(Unknown Source)
  47.     at javax.swing.JEditorPane.getKitTypeRegistry(Unknown Source)
  48.     at javax.swing.JEditorPane.getEditorKitClassNameForContentType(Unknown Source)
  49.     at javax.swing.JTextPane.<init>(Unknown Source)
  50.     at mypack.Main.createAndShowGUI(main.java:84)
  51.     at mypack.Main.openGui(main.java:236)
  52.     at test.check(test.java:27)
  53.     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  54.     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  55.     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  56.     at java.lang.reflect.Method.invoke(Unknown Source)
  57.     at sun.plugin.javascript.JSInvoke.invoke(Unknown Source)
  58.     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  59.     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  60.     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  61.     at java.lang.reflect.Method.invoke(Unknown Source)
  62.     at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
  63.     at sun.plugin.com.MethodDispatcher.invoke(Unknown Source)
  64.     at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
  65.     at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
  66.     at java.security.AccessController.doPrivileged(Native Method)
  67.     at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
  68. java.lang.Exception: java.lang.NullPointerException
  69.     at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
  70.     at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
  71.     at java.security.AccessController.doPrivileged(Native Method)
  72.     at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
  73.  
  74.  

and the relevant code is :

Expand|Select|Wrap|Line Numbers
  1. private JTextArea textArea = null;
  2.   private JTextPane resultArea = null;
  3.   private JComboBox langBox = null;
  4.  
  5.   private Map<Language, ConfigurationDialog> configDialogs = new HashMap<Language, ConfigurationDialog>();
  6.  
  7.    public Main() {
  8.   }
  9.  
  10.   public void createAndShowGUI(String inputText) {
  11.     JFrame frame = new JFrame("Grammar Check Tool");
  12.     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.  
  14.     textArea = new JTextArea(inputText);
  15.     // TODO: wrong line number is displayed for lines that are wrapped automatically:
  16.     textArea.setLineWrap(true);
  17.     textArea.setWrapStyleWord(true);
  18.      JTextPane resultArea = new JTextPane();
  19.     resultArea.setContentType("text/html");
  20.     resultArea.setText("Results will appear here");   
  21.     JLabel label = new JLabel("Please type or paste text to check in the top area");
  22.     JButton button = new JButton("Check text");
  23.     button.setMnemonic('c'); 
  24.     button.addActionListener(this);
  25.  
  26.     JButton configButton = new JButton(OPTIONS_BUTTON);
  27.     configButton.setMnemonic('o'); 
  28.     configButton.addActionListener(this);
  29.  
  30.     JPanel panel = new JPanel();
  31.     panel.setLayout(new GridBagLayout());
  32.     GridBagConstraints buttonCons = new GridBagConstraints();
  33.     buttonCons.gridx = 0;
  34.     buttonCons.gridy = 0;
  35.     panel.add(button, buttonCons);
  36.     buttonCons.gridx = 1;
  37.     buttonCons.gridy = 0;
  38.     panel.add(new JLabel("  "), buttonCons);
  39.     buttonCons.gridx = 2;
  40.     buttonCons.gridy = 0;
  41.  
  42.     buttonCons.gridx = 3;
  43.     buttonCons.gridy = 0;
  44.     buttonCons.insets = new Insets(0, 10, 0, 0);
  45.     //panel.add(configButton, buttonCons);
  46.  
  47.     Container contentPane = frame.getContentPane();
  48.     GridBagLayout gridLayout = new GridBagLayout();
  49.     contentPane.setLayout(gridLayout);
  50.     GridBagConstraints cons = new GridBagConstraints();
  51.     cons.fill = GridBagConstraints.BOTH;
  52.     cons.weightx = 10.0f;
  53.     cons.weighty = 10.0f;
  54.     cons.gridx = 0;
  55.     cons.gridy = 0;
  56.     contentPane.add(new JScrollPane(textArea), cons);
  57.     cons.gridy = 1;
  58.     cons.weighty = 5.0f;
  59.     contentPane.add(new JScrollPane(resultArea), cons);
  60.  
  61.     cons.fill = GridBagConstraints.NONE;
  62.     cons.gridx = 0;
  63.     cons.gridy = 2;
  64.     cons.weighty = 0.0f;
  65.     cons.insets = new Insets(3,3,3,3);
  66.     //cons.fill = GridBagConstraints.NONE;
  67.     contentPane.add(label, cons);
  68.     cons.gridy = 3;
  69.     contentPane.add(panel, cons);
  70.  
  71.     frame.pack();
  72.     frame.setSize(600, 600);
  73.     frame.setVisible(true);
  74.   }
  75.  
  76.  
Thanks for your help...
Aug 15 '07 #6
JosAH
11,448 Recognized Expert MVP
Which of the lines is line #84 in method createAndShowGU I()?

kind regards,

Jos
Aug 15 '07 #7
teenIce
37 New Member
Which of the lines is line #84 in method createAndShowGU I()?

kind regards,

Jos

resultArea = new JTextPane();

regards,
teenICe
Aug 15 '07 #8
r035198x
13,262 MVP
Here is one nit that is a good recipe for brewing nullpointers.

You have
Expand|Select|Wrap|Line Numbers
  1.  JTextPane resultArea = new JTextPane();
inside your createGUI method. This hides the resultArea already defined in the class using
Expand|Select|Wrap|Line Numbers
  1. private JTextPane resultArea = null;
. The later resultArea variable is thus probably not being initialized properly.
Aug 15 '07 #9
JosAH
11,448 Recognized Expert MVP
resultArea = new JTextPane();

regards,
teenICe
Got it: you have a member variable resultArea but you also define a local variable
with the same name; it effectively hides the member variable which will remain
null all the time. Don't define that local variable.

kind regards,

Jos
Aug 15 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

4
4068
by: gabryh | last post by:
Hi, The following code throws me NullPointerException. ..... public static boolean isEmpty(String value) { return ((value == null) || (value.trim().equals(""))); }
2
3076
by: Smith | last post by:
The program compiled successfully, but it gives the following error on runtime.... java.lang.NullPointerException at FrogManiaApp.paint(FrogManiaApp.java:102) at sun.awt.RepaintArea.paint(RepaintArea.java:177) at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:260) at java.awt.Component.dispatchEventImpl(Component.java:3678) at java.awt.Container.dispatchEventImpl(Container.java:1627)
0
1315
by: Ike | last post by:
I have a signed JApplet which has a JTextArea wherein one can put Jython Script. Upon clicking a JButton, the script is executed. The script which executes to code is listed below. If I run the Applet in an AppletViewer, it runs fine. However, when run in a web browser, I am getting NullPointerException's (I copy-pasted from the Java Console these Exceptions). Please Note, I AM including jython.jar in the ARCHIVE parameter of the HTML...
17
1779
oll3i
by: oll3i | last post by:
nevermind the previous prob i posted i m getting further and i get a new exception in readFile method pleae help me with that one thank u a lot in advance java.lang.NullPointerException at konta_bankowe.Interfejs.readFile(Interfejs.java) at konta_bankowe.Interfejs.wyswietlHistorieRachunku(Interfejs.java) at konta_bankowe.Interfejs.access$0(Interfejs.java)
0
1569
by: gezkk | last post by:
hi, i m using http proxy service to get proxy and host to applet, its working fine with jdk1.5 but getting java.lang.NullPointerException in jdk1.6 And the following is mseeage contains java console java.lang.NullPointerException at com.atonesoftware.web.applet.transfer.client.http.HTTPTransfer.autoDetectProxy(HTTPTransfer.java:326)
1
2483
by: speedygonzalez | last post by:
Hi all! I've a pretty naive problem with my applet which is as follows..... // Wordlist for GRE High Frequency Words import java.awt.*; import java.applet.*;
18
2571
by: pradeep84 | last post by:
hi all, i'm using the following code and i'm getting exception in thread "main" java.lang.nullpointerexception at the line which is in bold. help me to solve this problem import java.applet.*; import java.awt.*; import java.io.*; import javax.swing.*; import java.sql.*;
1
2444
by: ketand1 | last post by:
import java.awt.*; import java.awt.event.*; import java.io.*; import java.util.*; import java.sql.*; import java.lang.*; class DbAwt extends Frame implements ActionListener { private TextField t1, t2, t3;
2
2273
by: sokeefe | last post by:
I am trying to edit the GUI of a project in Netbeans. In particular, I am trying to add new JButtons. I get a NullPointerException when I try to add an Event to any given JButton (even ones that already exist) in my application using the Design Editor. I go about this by right-clicking on the JButton in the design editor, navigating to Events -> Action -> actionPerformed. The auto-generated code appears for a brief moment before it...
0
8432
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8343
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8856
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8762
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
6185
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4179
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4347
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2762
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1747
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.