我正在尝试制作一个基本的Java 小程序来为他们打开客户端计算机上的文件。我想通过JavaScript调用下面Java小程序中的openFile函数。
import java.awt.Desktop;
import java.io.File;
import java.io.IOException;
import javax.swing.JApplet;
public class Test extends JApplet {
public void openFile(String filePath) {
File f = new File(filePath);
try {
Desktop.getDesktop().open(f);
} catch (IOException e) {
e.printStackTrace();
}
}
}
在我网页的正文标签之间,我有以下内容:
<applet code="Test.class" height="0" width="0"></applet>
<script type="text/javascript">
document.applets[0].openFile("C:\\test.log");
</script>
当我加载页面时,我收到错误:
TypeError:对象#没有方法'openFile'
我需要做些什么来修复此错误并使小程序正常工作?