Dom4j Chinese garbled characters when outputting UTF-8 XML

Source: Internet
Author: User

Garbled characters appear when you use dom4j xmlwriter to output UTF-8-encoded XML files.

First, set the output encoding where we use UTF-8:

Java Code :
 
Outputformat format = outputformat. createprettyprint (); format. setencoding ("UTF-8 ");

Output code:

Java code:

 
Try {output = new xmlwriter (New filewriter ("entity. XML "), format); output. write (document); output. close ();} catch (ioexception e) {e. printstacktrace ();}

If the above output contains Chinese characters, garbled characters may occur. You can change the above filewriter to fileoutputstream.

Java code

Try {output = new xmlwriter (New fileoutputstream ("entity. XML "), format); output. write (document); output. close ();} catch (ioexception e) {e. printstacktrace ();}

 

Original article link: http://royboy.iteye.com/blog/337948

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.