Html-formatted documents are converted to word for download,

Source: Internet
Author: User

Html-formatted documents are converted to word for download,

When the front-end uses the ueditor plug-in to allow users to input data and save it to the database. It can be used to print user input in another place. To save the ueditor in html format, convert the content in the background as follows:

1 @ RequestMapping ("ueditorPrintAction. do ") 2 public void uePrint (HttpServletRequest request, HttpServletResponse response) throws IOException {3 CivilParam param = new CivilParam (); 4 param. setParamData (null); 5 CivilResult result = ueditorPrintService. queryContext (param); 6 map = (Map) result. getResultData (); 7 // The above is through pring dubbo for database query 8 String htmlContent = map. get ("content "). toString (); 9 // character replacement 10 htmlContent = htmlContent. replaceAll ("'Lt '", "<"); 11 htmlContent = htmlContent. replaceAll ("'gt '", ">"); 12 htmlContent = htmlContent. replaceAll ("'quot '", "\" "); 13 htmlContent = htmlContent. replaceAll ("'#39'", "'"); 14 15 String content = "View Code

 

Related Article

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.