我正在尝试使用页面的 ul 下载 html 文件。我正在使用 Jsoup。这是我的代码:
TextView ptext = (TextView) findViewById(R.id.pagetext);
Document doc = null;
try {
doc = (Document) Jsoup.connect(mNewLinkUrl).get();
} catch (IOException e) {
Log.d(TAG, e.toString());
e.printStackTrace();
}
NodeList nl = doc.getElementsByTagName("meta");
Element meta = (Element) nl.item(0);
String title = meta.attr("title");
ptext.append("\n" + mNewLinkUrl);
运行它时,我收到一条错误消息,提示未为 type 元素定义 attr。我做错了什么?如果这看起来微不足道,请原谅我。