java中是否有功能可以跨任何平台打开文件的包含文件夹.我可以通过运行在Windows中完成此操作
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("explorer /select,c:\\sampleFile.txt");
您可以使用java.awt.Desktop.getDesktop().open(file)在任何平台上打开文件(如果支持Desktop api).是否有类似的东西可以调出文件管理器?
谢谢.
解决方法:
如果你调用getDesktop().open(file.getParentFile())会发生什么?