我制作了一个程序来搜索 .txt 文件。
如果我单击一个文件,则意味着应该出现“打开方式”对话框,并且该对话框将包含所有已安装程序的列表。
我正在使用此代码搜索文件:
public File[] finder( String dirName)
{
// Create a file object on the directory.
File dir = new File(dirName);
// Return a list of all files in the directory.
return dir.listFiles(new FilenameFilter();
}
public boolean accept(File dir, String filename)
{
return filename.endsWith(".txt");
}
我可以使用哪些 Java 代码来显示“打开方式”对话框?