您好我正在尝试通过我的 JNLP 文件选择器获取返回的文件路径。这是我的代码。我不知道如何以及在哪里获取文件路径。它来自文件内容吗?fileConents.getfilepath 之类的?
try {
if (fileOpenService==null) {
fileOpenService = (FileOpenService)ServiceManager.
lookup("javax.jnlp.FileOpenService");
}
fileContents = fileOpenService.openFileDialog(path, xtns);
} catch(UnavailableServiceException use) {
use.printStackTrace();
} catch(IOException ioe) {
ioe.printStackTrace();
}
提前致谢!