<w:tblW w:w="0" w:type="auto"/>
读属性值时,不要带前缀
element.attributeValue("type")//是type而不是w:type
写属性值时,要带前缀
element.addAttribute("w:type", type); //是w:type而不是type
读标签时,不要带前缀
src.elements("p")
写标签时,要带前缀
element.addElement("w:p")
element.attributeValue("type")//是type而不是w:type
写属性值时,要带前缀
element.addAttribute("w:type", type); //是w:type而不是type
读标签时,不要带前缀
src.elements("p")
写标签时,要带前缀
element.addElement("w:p")