Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のようなことをしたい
Document dom = new Document(); Element ele = new Element("jsp:include"); dom.setRootElement(ele);
しかし、そのスローエラー私はdom(org.jdom.Document、org.jdom.Element)を取得するためにjdomを使用しています
org.jdom.Document
org.jdom.Element
これを行うことの何が問題になっていますか
Namespace ns = Namespace.getNamespace("jsp", "http://java.sun.com/JSP/Page"); Element element = new Element("include", ns); Document dom = new Document(element);