嘿,我在 Java EE 项目上使用 Eclipse,它显示了问题
对于 OutputDocument 类型,方法 replace(Element, String) 未定义
我已经导入了au.id.jericho.lib.html.OutputDocument库,我不知道还能做什么
这是使用它的地方
for (Iterator i = linkStartTags.iterator(); i.hasNext();) {
Element el = (Element)i.next();
Attributes attributes = el.getAttributes();
String rel = attributes.getValue(atributo);
if ((rel != null) && (!"".equalsIgnoreCase(rel)))
{
if ((valores != null) &&
(valores.containsKey(rel))) {
String valor = (String)valores.get(rel);
outputDocument.replace(el, valor);
}
}
}
PS我没有写这个代码。
编辑: 我使用了错误版本的库,我使用的是jericho-html-2.1并且我更改为jericho-html-2.3,现在它可以工作了,谢谢