还是来个纯JAVA的版本吧,不要为windows的命令如何使用而困扰了:
import java.awt.Desktop;
import java.io.File;/**
*在JAVA中调用系统默认的工具打开文件
*注意: 必须使用JDK1.6或更高版本!
*@author: [url=http://eastsun.javaeye.com]Eastsun[/url]
*/
public class OpenFile{
public static void main(String[] args){
String fileName =\"f:/java/test/out.txt\";
try{
Desktop desktop =Desktop.getDesktop();
desktop.open(new File(fileName));
}catch(Exception e){
e.printStackTrace();
}
}
}
还是来个纯JAVA的版本吧,不要为windows的命令如何使用而困扰了:
import java.awt.Desktop;
import java.io.File;/**
*在JAVA中调用系统默认的工具打开文件
*注意: 必须使用JDK1.6或更高版本!
*@author: [url=http://eastsun.javaeye.com]Eastsun[/url]
*/
public class OpenFile{
public static void main(String[] args){
String fileName =\"f:/java/test/out.txt\";
try{
Desktop desktop =Desktop.getDesktop();
desktop.open(new File(fileName));
}catch(Exception e){
e.printStackTrace();
}
}
}
相当棒!学习了..支持一下,以让更多朋友能看到些方法.....