2 个解决方案
#1
try {
java.awt.Desktop.getDesktop().browse(new URI("file://F:/aaa.xls"));
} catch (URISyntaxException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
java.awt.Desktop.getDesktop().browse(new URI("file://F:/aaa.xls"));
} catch (URISyntaxException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
#2
java.lang.Runtime就有啊exec(String command, String[] envp, File dir)这个方法就是可以指定某个目录下调用命令
Runtime.getRuntime().exec("你的命令",null,new File("d:/test"));
#1
try {
java.awt.Desktop.getDesktop().browse(new URI("file://F:/aaa.xls"));
} catch (URISyntaxException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
java.awt.Desktop.getDesktop().browse(new URI("file://F:/aaa.xls"));
} catch (URISyntaxException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
#2
java.lang.Runtime就有啊exec(String command, String[] envp, File dir)这个方法就是可以指定某个目录下调用命令
Runtime.getRuntime().exec("你的命令",null,new File("d:/test"));