如何通过Java Applet在浏览器中显示信息?

时间:2014-10-01 04:39:49

标签: java applet

我想通过Java applet在浏览器中显示有关音乐作品的信息。我使用库beaglebuddy_mp3.jar作为id3标签。包含文件的文件夹如下所示:

applet
 - index.html
 - FirstApplet.class
 - beaglebuddy_mp3.jar

在index.html中,我连接了一个小程序:

<applet code="FirstApplet.class" archive="beaglebuddy_mp3.jar" width="500" height="500"></applet>

FirstApplet.class包含以下代码:

import java.applet.Applet;
import java.awt.Graphics;
import java.io.File;
import java.io.IOException;

import com.beaglebuddy.mp3.MP3;

public class FirstApplet extends Applet{

public void paint(Graphics g){
    try {
        MP3 mp3 = new MP3("D:\\Music\\abc.mp3");
        g.drawString(mp3.getBand() +" "+mp3.getTitle(), 20, 20);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();

    }
   } 
}

启动index.html文件对话框后,会出现一条警告,指出我运行应用程序需要您自担风险。然后我点击“运行”,立即出现并消失灰色方块。没有显示任何内容。

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

import javax.swing.JApplet;
import javax.swing.SwingUtilities;
import javax.swing.JLabel;
import java.io.File;
import java.io.IOException;
import com.beaglebuddy.mp3.MP3;


public class FirstApplet extends JApplet {

    public void init() {

        try {
            SwingUtilities.invokeAndWait(new Runnable() {
                public void run() {

                    MP3 mp3 = new MP3("D:\\Music\\abc.mp3");
                    JLabel label = new JLabel(mp3.getBand() +" "+mp3.getTitle());
                    add(label);
                }
            });
        } catch (Exception e) {
            System.err.println("createGUI didn't complete successfully");
        }
    }
}

其次,您必须使用官方证书签署您的applet代码才能在您的Web浏览器中运行它。