How to Open HTML file using Java?

前端 未结 3 434
悲哀的现实
悲哀的现实 2020-12-08 15:56

I try to open HTML file from local (In my system) by Java program. I tried some of the program got through stack overflow but its not working as much.

For E.

3条回答
  •  执念已碎
    2020-12-08 16:40

    I would prefer to use default browser

    File htmlFile = new File(url);
    Desktop.getDesktop().browse(htmlFile.toURI());
    

提交回复
热议问题