Package org.htmlunit.html
Class XmlSerializer
- java.lang.Object
-
- org.htmlunit.html.XmlSerializer
-
public class XmlSerializer extends java.lang.ObjectUtility to handle conversion from HTML code to XML string.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringBuilderbuilder_private static java.util.regex.PatternCREATE_FILE_PATTERNprivate static java.lang.StringFILE_SEPARATORprivate java.lang.StringBuilderindent_private static org.apache.commons.logging.LogLOGprivate java.io.FileoutputDir_
-
Constructor Summary
Constructors Constructor Description XmlSerializer()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringasText(DomNode node)java.lang.StringasXml(DomElement node)private static java.util.Map<java.lang.String,DomAttr>createAttributesCopyWithClonedAttribute(HtmlElement elt, java.lang.String attrName)private java.io.FilecreateFile(java.lang.String url, java.lang.String extension)Computes the best file to save the response to the given URL.private java.util.Map<java.lang.String,DomAttr>getAttributesFor(BaseFrameElement frame)protected java.util.Map<java.lang.String,DomAttr>getAttributesFor(HtmlImage image)protected java.util.Map<java.lang.String,DomAttr>getAttributesFor(HtmlLink link)private static java.lang.StringgetFileExtension(Page enclosedPage)private static java.lang.StringgetSuffix(WebResponse response)protected booleanisExcluded(DomElement element)protected voidprintOpeningTag(DomElement node)Prints the content between "<" and ">" (or "/>") in the output of the tag name and its attributes in XML format.protected voidprintText(DomNode node)protected voidprintXml(DomElement node)private java.util.Map<java.lang.String,DomAttr>readAttributes(DomElement node)voidsave(SgmlPage page, java.io.File file)private voidsave(SgmlPage page, java.io.File file, boolean append)
-
-
-
Field Detail
-
FILE_SEPARATOR
private static final java.lang.String FILE_SEPARATOR
- See Also:
- Constant Field Values
-
CREATE_FILE_PATTERN
private static final java.util.regex.Pattern CREATE_FILE_PATTERN
-
LOG
private static final org.apache.commons.logging.Log LOG
-
builder_
private final java.lang.StringBuilder builder_
-
indent_
private final java.lang.StringBuilder indent_
-
outputDir_
private java.io.File outputDir_
-
-
Method Detail
-
save
public void save(SgmlPage page, java.io.File file) throws java.io.IOException
- Throws:
java.io.IOException
-
save
private void save(SgmlPage page, java.io.File file, boolean append) throws java.io.IOException
- Throws:
java.io.IOException
-
asXml
public java.lang.String asXml(DomElement node) throws java.io.IOException
- Parameters:
node- a node- Returns:
- the xml representation according to the setting of this serializer
- Throws:
java.io.IOException- in case of problem saving resources
-
printXml
protected void printXml(DomElement node) throws java.io.IOException
- Throws:
java.io.IOException
-
asText
public java.lang.String asText(DomNode node)
- Parameters:
node- a node- Returns:
- the text representation according to the setting of this serializer
-
printText
protected void printText(DomNode node)
-
printOpeningTag
protected void printOpeningTag(DomElement node) throws java.io.IOException
Prints the content between "<" and ">" (or "/>") in the output of the tag name and its attributes in XML format.- Parameters:
node- the node whose opening tag is to be printed- Throws:
java.io.IOException- in case of problem saving resources
-
readAttributes
private java.util.Map<java.lang.String,DomAttr> readAttributes(DomElement node) throws java.io.IOException
- Throws:
java.io.IOException
-
getAttributesFor
private java.util.Map<java.lang.String,DomAttr> getAttributesFor(BaseFrameElement frame) throws java.io.IOException
- Throws:
java.io.IOException
-
getFileExtension
private static java.lang.String getFileExtension(Page enclosedPage)
-
getAttributesFor
protected java.util.Map<java.lang.String,DomAttr> getAttributesFor(HtmlLink link) throws java.io.IOException
- Throws:
java.io.IOException
-
getAttributesFor
protected java.util.Map<java.lang.String,DomAttr> getAttributesFor(HtmlImage image)
-
getSuffix
private static java.lang.String getSuffix(WebResponse response)
-
createAttributesCopyWithClonedAttribute
private static java.util.Map<java.lang.String,DomAttr> createAttributesCopyWithClonedAttribute(HtmlElement elt, java.lang.String attrName)
-
isExcluded
protected boolean isExcluded(DomElement element)
-
createFile
private java.io.File createFile(java.lang.String url, java.lang.String extension) throws java.io.IOExceptionComputes the best file to save the response to the given URL.- Parameters:
url- the requested URLextension- the preferred extension- Returns:
- the file to create
- Throws:
java.io.IOException- if a problem occurs creating the file
-
-