This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: how to change xml ENCODING dynamicly


> I use a xsl  and html to let users change the xml's
> data. and then I need submit to a jsp file. but,when I saved, the xml
> is lost something! It lost's  encoding info.... just like this:
>
> <?xml version="1.0"?>

It hasn't lost anything. The output file is encoded using the default output
encoding, UTF-8, and because this is the default, it doesn't need to specify
the encoding in the XML declaration. Any program that reads this XML is
guaranteed to be able to understand UTF-8, which isn't the case for your
original gb2312 encoding.

If you want the output to be in gb2312 (whatever that is), then you can
specify <xsl:output encoding="gb2312"/>, though the XSLT processor is not
guaranteed to support it.

If you want the output to be in the same encoding as the input, there's no
way of specifying this, because the XSLT processor doesn't know what the
input encoding was - only the XML parser knows that.

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]