xsl-list
[Top] [All Lists]

RE: Creating a Document with encoding="ISO-8859"

2004-09-03 09:45:47
Firstly, this question has nothing to do with XSLT.

Secondly, your code is creating an in-memory DOM. The encoding is only
determined when you subsequently serialize the DOM to a sequential file.

Michael Kay 

-----Original Message-----
From: Boyed, Suvig [mailto:sboyed(_at_)vignette(_dot_)com] 
Sent: 03 September 2004 16:40
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Creating a Document with encoding="ISO-8859"

Hello,

I am creating a Document using the following code...

Document output = null;
try {   
    // create a DocumentBuilderFactory
    DocumentBuilderFactory factory = 
DocumentBuilderFactory.newInstance();
        
    // create a DocumentBuilder (DOM Parser)
    DocumentBuilder builder = factory.newDocumentBuilder();
        
    // create an EMPTY XML document for the output
    output = builder.newDocument();
} catch (Throwable t) {
    // thrown when parser factories cannot be found or 
instantiated, etc.
    logger.error("generateXML - Error/Exception in 
generateXML() " + t.getMessage());
    return null;
}       
       

The type of document that is getting created is UTF-8 (<?xml 
version="1.0" encoding="UTF-8"?>)
How do I make this ISO-8859 based document?

Thx
Suvig

--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--





<Prev in Thread] Current Thread [Next in Thread>