Document document = new Document();
......
Element root = new Element("rss");
List attributes = new ArrayList();
Attribute att1 = new Attribute("version","2.0");
Attribute att2 = new Attribute("xmlns:HTML","http://www.w3.org/Profiles/XHTML-transitional");
attributes.add(att1);
attributes.add(att2);
root.setAttributes(attributes);
document.addContent(root);在Attribute att2 = new Attribute("xmlns:HTML","http://www.w3.org/Profiles/XHTML-transitional");这一行报错:
org.jdom.IllegalNameException: The name "xmlns:HTML" is not legal for JDOM/XML attributes: Attribute names cannot contain colons.