2024年4月8日发(作者:)

if (useCData) {

Data(text);

} else {

haracters(text);

}

}

private boolean isNeedCData() {

if(("body")||("data")){

n("-------");

}

if ((CDATA_ELEMENTS).contains(currentElementName)) {

return true;

} else {

return false;

}

}

public void writeStartElement(String prefix, String local, String uri)

throws XMLStreamException {

currentElementName = local;

tartElement(prefix, local, uri);

}

}