如何使一个java程序,一执行,就打开本地某目录下的html文件?比如abc.html, 就像双击打开那样!
publicstaticvoidmain(Stringargs[])throwsException{Filefile=newFile("abc.html");Runtim...
public static void main(String args[]) throws Exception
{
File file = new File("abc.html");
Runtime ce=Runtime.getRuntime();
System.out.println(file.getAbsolutePath());
ce.exec(file.getAbsolutePath());
}
像这样,想打开同目录下的abc.html,怎么不行呢? 展开
{
File file = new File("abc.html");
Runtime ce=Runtime.getRuntime();
System.out.println(file.getAbsolutePath());
ce.exec(file.getAbsolutePath());
}
像这样,想打开同目录下的abc.html,怎么不行呢? 展开
3个回答
展开全部
恩,你的命令不正确,怎么会打开呢?
试试我给你的代码吧
import java.io.File;
public class TestRuntime {
/**
* @param args
*/
public static void main(String args[]) throws Exception
{
File file = new File("abc.html");
Runtime ce=Runtime.getRuntime();
System.out.println(file.getAbsolutePath());
ce.exec("cmd /c start "+file.getAbsolutePath());
}
}
只要在你的同目录下有abc.html,就可以打开了
试试我给你的代码吧
import java.io.File;
public class TestRuntime {
/**
* @param args
*/
public static void main(String args[]) throws Exception
{
File file = new File("abc.html");
Runtime ce=Runtime.getRuntime();
System.out.println(file.getAbsolutePath());
ce.exec("cmd /c start "+file.getAbsolutePath());
}
}
只要在你的同目录下有abc.html,就可以打开了
展开全部
Runtime ce=Runtime.getRuntime();只是获得了 jvm的运行时环境,如果要获得双击打开的效果,应该要调用window的dll文件,这个我也不是很懂,一般是 把你的 abc.htmL 打印到一个TextAera不就好了么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Runtime.getRuntime().exec("cmd.exe /c start d:\\generator-output3");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询