我目前有围绕元素包装表格的代码:
public static Element wrapElementInTable(Element e)
{
if (e == null)
return null;
return e.wrap(createTableTemplate().outerHtml());
}
public static Element createTableTemplate()
{
return createElement("table", "").appendChild(
createElement("tr").appendChild(
createElement("td"))
);
}
现在我在我的主要方法中创建一个元素:
public static void main(String[] args) throws IOException
{
Element e = new Element(Tag.valueOf("span"),"");
String text = HtmlGenerator.wrapElementInTable(e).outerHtml();
System.out.println(text);
}
问题是我在 wrap 方法中收到一个 NullPointerException 显然没有理由。
Exception in thread "main" java.lang.NullPointerException
at org.jsoup.nodes.Node.wrap(Node.java:345)
at org.jsoup.nodes.Element.wrap(Element.java:444)
at usingjsoup.HtmlGenerator.wrapElementInTable(HtmlGenerator.java:56)
at usingjsoup.UsingJsoup.main(UsingJsoup.java:19)
Java Result: 1
有谁知道为什么会抛出 NullPointerException ?(如果我在调用 wrap 之前打印出元素,则输出是我创建的标签)