读取整个HTML文件为String?
是否有比以下方法更好的方法来将整个html文件读取为单个字符串变量:
String content = ""; try {
BufferedReader in = new BufferedReader(new FileReader("mypage.html"));
String str;
while ((str = in.readLine()) != null) {
content +=str;
}
in.close();
} catch (IOException e) {
}
回答:
有IOUtils.toString(..)
来自Apache
Commons 的实用程序。
如果您使用Guava
的还有Files.readLines(..)
和Files.toString(..)
。
以上是 读取整个HTML文件为String? 的全部内容, 来源链接: utcz.com/qa/406979.html