我有一个可以在文件夹中找到最近创建的文件的 Java 应用程序。我的最终目标是将该应用程序放在网页上,这样当用户打开网页时,该页面将导致文件夹中的最新文件打开。我从 oracle 阅读了一些关于创建简单小程序的教程,但我遇到的所有内容都涉及制作我的页面不需要的 GUI。
目前,当我在 Firefox 中打开 html 页面时,它会加载除小程序之外的所有 html。它没有给出错误消息,它只是不做任何事情。我认为这是因为它没有将我的 java 应用程序识别为小程序,所以我认为我可能需要做更多工作才能将我的代码转换为小程序。我在我的 java 类名中添加了“扩展 Applet”,并考虑添加一个 init 方法,但这似乎更适合那些想要 GUI 的人。
java应用程序在下面,以防万一。就 HTML 而言,我将 applet 嵌入为 applet code="FirstApplet" width='300' height='300' (带有正确的开始和结束标签),它与 java 应用程序位于同一文件夹中。
import java.applet.Applet;
import java.io.File;
import java.io.IOException;
@SuppressWarnings("serial")
public class FirstApplet extends Applet{
public static File[] getPath(String folderPath){
File directory = new File(folderPath);
File[] myarray;
myarray=directory.listFiles();
return myarray;
}
public static String getMostCurr(File[] fileArray){
File mostCurrent = null;
for (int i = 0; i < fileArray.length; i++) {
if ((mostCurrent==null)||
(fileArray[i].lastModified()> mostCurrent.lastModified()))
{
mostCurrent = fileArray[i];
} }
//System.out.println(mostCurrent.toString());
return mostCurrent.toString();
}
public static void main(String[] args) throws IOException{
//opens file on MACINTOSH
Runtime.getRuntime().exec(new String[]{"/usr/bin/open",
getMostCurr(getPath("/Users/guest/Desktop/lectures/testFileReader"))});
}
}
编辑**:这是所要求的 HTML 页面。
<html>
<head>
<title>My First Java Applet </title>
</head>
<body>
Here's my first java applet: <br> <br>
<applet code ='FirstApplet.class' width='300' height='300'>
</body>
</html>