用于显示html页面内容的Java代码

时间:2014-03-14 21:43:57

标签: java html

有人可以告诉我如何阅读使用java程序存储在本地系统中的html页面的内容吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

是的,有人可以告诉你答案。

BufferedReader is = new BufferedReader(new FileInputStream(new File("c:/my.html")));
String inputLine;

while ((inputLine = is.readLine()) != null) {
    System.out.println(inputLine);
}
is.close()