David Thielen
Wed, 28 Sep 2005 20:32:41 -0700
|
Hi; I need to create a node as follows: <ss:Data
xmlns="http://www.w3.org/TR/REC-html40"
ss:Type="String"> How do I set the xmlns= attribute? I presently have the following but it seems cludgey to me: Element cell; … Namespace dfNs =
Namespace.get("","http://www.w3.org/TR/REC-html40"); QName dataName = QName.get("ss:Data",
dfNs); Element data = ""> cell.add(data); Thanks – dave |