当前位置: 技术问答>java相关
请问java应用程序怎样打开网页(在线等待)
来源: 互联网 发布时间:2015-03-13
本文导语: 我做应用程序帮助文档我想做成网页形式 请问该怎么打开htm文件呢?? | import java.lang.*; ... public openFile(String file) { try{ Runtime rt=Runtime.getRuntime(); rt.exec(file); } catch(Exception e) { } } ...
我做应用程序帮助文档我想做成网页形式 请问该怎么打开htm文件呢??
|
import java.lang.*;
...
public openFile(String file)
{
try{
Runtime rt=Runtime.getRuntime();
rt.exec(file);
}
catch(Exception e)
{
}
}
...
public openFile(String file)
{
try{
Runtime rt=Runtime.getRuntime();
rt.exec(file);
}
catch(Exception e)
{
}
}