v****c 发帖数: 32 | 1 一个Java applet小程序中 加了以下内容后产生的class文件在浏览器中工作不正常。
why? xiexie hui fu.
//set up text label
textL = new JLabel();
textL.setText( "Welcome to the park!" );
textL.setLocation(25,0);
textL.setSize(550,210);
textL.setFont(new Font("Arial",Font.PLAIN,36));
textL.setHorizontalAlignment(JLabel.CENTER);
contentPane.add(textL);
//set up picture label
pictureL = new JLabel();
pictureL.setIcon(new ImageIcon( "fun.jpg" ));
pictureL.setBounds(54,120,500,250) |
|