如何克隆 SAX 解析器的属性
How to clone attributes of a SAX Parser
在 Java 中使用 SAX 解析器时,我们将属性作为 startElement
方法中的参数之一。
谁能告诉我如何克隆此属性,以便将其存储在 HashMap<String, Attributes>
。
new AttributesImpl(Attributes atts)
Copy an existing Attributes object. This constructor is especially
useful inside a startElement event.
在 Java 中使用 SAX 解析器时,我们将属性作为 startElement
方法中的参数之一。
谁能告诉我如何克隆此属性,以便将其存储在 HashMap<String, Attributes>
。
new AttributesImpl(Attributes atts)
Copy an existing Attributes object. This constructor is especially useful inside a startElement event.