sorry to bother you again.Applet problem

I self-signed an applet successfully and created a JAR file by NetBeans IDE. When I open the web page, getting error message from Java console, why?Thanks
Java Plug-in 1.5.0_12
Using JRE version 1.5.0_12 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\Hy


----------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
l: dump classloader list
m: print memory usage
o: trigger logging
p: reload proxy configuration
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
x: clear classloader cache
0-5: set trace level to <n>
----------------

**Error: larger_plotdata.bin (The system cannot find the file specified)
java.lang.reflect.InvocationTargetException
at java.awt.EventQueue.invokeAndWait(Unknown Source)
at javax.swing.SwingUtilities.invokeAndWait(Unknown Source)
at Combox.init(Combox.java:52)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException
at javax.swing.DefaultComboBoxModel.<init>(Unknown Source)
at javax.swing.JComboBox.<init>(Unknown Source)
at Combox.initComponents(Combox.java:70)
at Combox.access$000(Combox.java:24)
at Combox$1.run(Combox.java:54)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)

I followed the instruction of NetBeans IDE to create the JAR file.
and the files structure is
-...TestCell4.4(root folder)
|
+--build(folder)
|
+--dist(folder)
|
|--+--javac(folder)
|
|---TestCell4.4.jar
| |
| |--META-INF
| | |
| | |--MANIFEST.MF
| |
| +--BinaryFile.class
| |
| +--Combox.class
| |
| |--TestCell.class
|
|--+nbproject(folder)
|
|--+src(folder)
|
|--+test(folder)
|
|--build.xml
|
|--large_plotdata.bin
|
|--manifest.mf

my html code is
<html>
<title>Test</title>
<head>
</head>


<body >
<applet code = "Combox.class" archive="TestCell4.4.jar" width ="800" height = "800" >
<br>
<br>
</applet>
</html>

Combox.class,TestCell.class,BinaryFile.class,TestCell4.4.jar,larger_plotdata.bin, and test.html these six files are in the same folder.
[3227 byte] By [zhshqzyc] at [2007-11-20 9:41:00]
# 1 Re: sorry to bother you again.Applet problem
Can you post the code that causing the problem ie Combox.java
keang at 2007-11-10 2:14:50 >
# 2 Re: sorry to bother you again.Applet problem
Please see the attachment.
Thanks
zhshqzyc at 2007-11-10 2:15:50 >