当我在浏览器中使用它时,这个小程序工作正常,但为什么它不适用于applet查看器?
我已经尝试过使用jGRASP和Eclipse来查看applet,但无论我做什么,我都明白了:
java.lang.NumberFormatException: null on this line of code
int paramCount = Integer.parseInt( getParameter( "count" ) );
我不明白为什么会这样做。
//file: AppletParameters.java
import javax.swing.JApplet;
import javax.swing.JApplet;
import javax.swing.JPanel;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
import java.awt.GridLayout;
public class AppletParameters extends JApplet
{
private JPanel panel; // panel to display pictures
public void init( )
{
// get the parameter count from the html 'count' parameter
int paramCount = Integer.parseInt( getParameter( "count" ) );
// create an array
ImageIcon [] image = new ImageIcon[paramCount];
// get each file name from the html 'file' parameter and put into array
for ( int k=0; k<paramCount; k++ )
image[k] = new ImageIcon( getImage( getDocumentBase( ), getParameter( "file"+k ) ) );
// build a new JPanel with GridLayout
panel = new JPanel( new GridLayout( 2, 5 ) );
// add images to the panel
for ( int k=0; k<paramCount; k++ )
panel.add( new JLabel( image[k] ) );
// add panel to me (this applet object)
add( panel );
} // end init method
} // end class
答案 0 :(得分:1)
您是否通过AppletViewer将参数传递给applet?我怀疑你是谁。
在Eclipse中,您可以通过“运行”菜单“运行配置...”子菜单项,然后选择“参数”选项卡来执行此操作。