public class ElementRemover extends DefaultFilter
The first option allows the application to specify which elements appearing in the event stream should be accepted and, therefore, passed on to the next stage in the pipeline. All elements not in the list of acceptable elements have their start and end tags stripped from the event stream unless those elements appear in the list of elements to be removed.
The second option allows the application to specify which elements should be completely removed from the event stream. When an element appears that is to be removed, the element's start and end tag as well as all of that element's content is removed from the event stream.
A common use of this filter would be to only allow rich-text and linking elements as well as the character content to pass through the filter — all other elements would be stripped. The following code shows how to configure this filter to perform this task:
ElementRemover remover = new ElementRemover(); remover.acceptElement("b", null); remover.acceptElement("i", null); remover.acceptElement("u", null); remover.acceptElement("a", new String[] { "href" });
However, this would still allow the text content of other
elements to pass through, which may not be desirable. In order
to further "clean" the input, the removeElement
option can be used. The following piece of code adds the ability
to completely remove any <SCRIPT> tags and content
from the stream.
remover.removeElement("script");
Note:
All text and accepted element children of a stripped element is
retained. To completely remove an element's content, use the
removeElement
method.
Note: Care should be taken when using this filter because the output may not be a well-balanced tree. Specifically, if the application removes the <HTML> element (with or without retaining its children), the resulting document event stream will no longer be well-formed.
Modifier and Type | Field and Description |
---|---|
protected java.util.Hashtable |
fAcceptedElements
Accepted elements.
|
protected int |
fElementDepth
The element depth.
|
protected int |
fRemovalElementDepth
The element depth at element removal.
|
protected java.util.Hashtable |
fRemovedElements
Removed elements.
|
protected static java.lang.Object |
NULL
A "null" object.
|
fDocumentHandler, fDocumentSource
Constructor and Description |
---|
ElementRemover() |
Modifier and Type | Method and Description |
---|---|
void |
acceptElement(java.lang.String element,
java.lang.String[] attributes)
Specifies that the given element should be accepted and, optionally,
which attributes of that element should be kept.
|
void |
characters(XMLString text,
Augmentations augs)
Characters.
|
void |
comment(XMLString text,
Augmentations augs)
Comment.
|
protected boolean |
elementAccepted(java.lang.String element)
Returns true if the specified element is accepted.
|
protected boolean |
elementRemoved(java.lang.String element)
Returns true if the specified element should be removed.
|
void |
emptyElement(QName element,
XMLAttributes attributes,
Augmentations augs)
Empty element.
|
void |
endCDATA(Augmentations augs)
End CDATA section.
|
void |
endElement(QName element,
Augmentations augs)
End element.
|
void |
endGeneralEntity(java.lang.String name,
Augmentations augs)
End general entity.
|
void |
endPrefixMapping(java.lang.String prefix,
Augmentations augs)
End prefix mapping.
|
protected boolean |
handleOpenTag(QName element,
XMLAttributes attributes)
Handles an open tag.
|
void |
ignorableWhitespace(XMLString text,
Augmentations augs)
Ignorable whitespace.
|
void |
processingInstruction(java.lang.String target,
XMLString data,
Augmentations augs)
Processing instruction.
|
void |
removeElement(java.lang.String element)
Specifies that the given element should be completely removed.
|
void |
startCDATA(Augmentations augs)
Start CDATA section.
|
void |
startDocument(XMLLocator locator,
java.lang.String encoding,
Augmentations augs)
Start document.
|
void |
startDocument(XMLLocator locator,
java.lang.String encoding,
NamespaceContext nscontext,
Augmentations augs)
Start document.
|
void |
startElement(QName element,
XMLAttributes attributes,
Augmentations augs)
Start element.
|
void |
startGeneralEntity(java.lang.String name,
XMLResourceIdentifier id,
java.lang.String encoding,
Augmentations augs)
Start general entity.
|
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
Augmentations augs)
Start prefix mapping.
|
void |
textDecl(java.lang.String version,
java.lang.String encoding,
Augmentations augs)
Text declaration.
|
doctypeDecl, endDocument, getDocumentHandler, getDocumentSource, getFeatureDefault, getPropertyDefault, getRecognizedFeatures, getRecognizedProperties, merge, reset, setDocumentHandler, setDocumentSource, setFeature, setProperty, xmlDecl
protected static final java.lang.Object NULL
protected java.util.Hashtable fAcceptedElements
protected java.util.Hashtable fRemovedElements
protected int fElementDepth
protected int fRemovalElementDepth
public void acceptElement(java.lang.String element, java.lang.String[] attributes)
element
- The element to accept.attributes
- The list of attributes to be kept or null if no
attributes should be kept for this element.
see #removeElementpublic void removeElement(java.lang.String element)
element
- The element to completely remove.public void startDocument(XMLLocator locator, java.lang.String encoding, NamespaceContext nscontext, Augmentations augs) throws XNIException
startDocument
in class DefaultFilter
XNIException
public void startDocument(XMLLocator locator, java.lang.String encoding, Augmentations augs) throws XNIException
startDocument
in class DefaultFilter
XNIException
public void startPrefixMapping(java.lang.String prefix, java.lang.String uri, Augmentations augs) throws XNIException
startPrefixMapping
in class DefaultFilter
XNIException
public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException
startElement
in class DefaultFilter
XNIException
public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException
emptyElement
in class DefaultFilter
XNIException
public void comment(XMLString text, Augmentations augs) throws XNIException
comment
in class DefaultFilter
XNIException
public void processingInstruction(java.lang.String target, XMLString data, Augmentations augs) throws XNIException
processingInstruction
in class DefaultFilter
XNIException
public void characters(XMLString text, Augmentations augs) throws XNIException
characters
in class DefaultFilter
XNIException
public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException
ignorableWhitespace
in class DefaultFilter
XNIException
public void startGeneralEntity(java.lang.String name, XMLResourceIdentifier id, java.lang.String encoding, Augmentations augs) throws XNIException
startGeneralEntity
in class DefaultFilter
XNIException
public void textDecl(java.lang.String version, java.lang.String encoding, Augmentations augs) throws XNIException
textDecl
in class DefaultFilter
XNIException
public void endGeneralEntity(java.lang.String name, Augmentations augs) throws XNIException
endGeneralEntity
in class DefaultFilter
XNIException
public void startCDATA(Augmentations augs) throws XNIException
startCDATA
in class DefaultFilter
XNIException
public void endCDATA(Augmentations augs) throws XNIException
endCDATA
in class DefaultFilter
XNIException
public void endElement(QName element, Augmentations augs) throws XNIException
endElement
in class DefaultFilter
XNIException
public void endPrefixMapping(java.lang.String prefix, Augmentations augs) throws XNIException
endPrefixMapping
in class DefaultFilter
XNIException
protected boolean elementAccepted(java.lang.String element)
protected boolean elementRemoved(java.lang.String element)
protected boolean handleOpenTag(QName element, XMLAttributes attributes)
(C) Copyright 2002-2014, Andy Clark, Marc Guillemot. All rights reserved.