Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How Java converts Word to PDF, PNG, SVG, RTF, XPS, TXT, XML

2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you how Java Word into PDF, PNG, SVG, RTF, XPS, TXT, XML, I believe that most people do not know much, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

Using tools: Free Spire.Doc for Java (free version)

Download and import Jar files:

Method 1: download the jar package through the official website and decompress it. After unpacking, import the Spire.Doc.jar file under the lib folder into the java program.

Method 2: it can be imported into the program through maven warehouse installation.

Java code example

Import com.spire.doc.*; import com.spire.doc.documents.ImageType; import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; public class WordToPng {public static void main (String [] args) throws IOException {/ / load test document Document doc = new Document ("test.docx") / / Save the specified page of the document as a picture in Png format BufferedImage image = doc.saveToImages (0, ImageType.Bitmap); File file = new File ("ToPNG.png"); ImageIO.write (image, "PNG", file); / / convert Word to PDF doc.saveToFile ("Word to PDF.pdf", FileFormat.PDF) / / Save Word to SVG format doc.saveToFile ("ToSVG.svg", FileFormat.SVG); / / Save Word to RTF format doc.saveToFile ("ToRTF.rtf", FileFormat.Rtf); / / Save Word to XPS format doc.saveToFile ("ToXPS.xps", FileFormat.XPS) / / Save Word to XML format doc.saveToFile ("ToXML.xml", FileFormat.Xml); / / Save Word to TXT format doc.saveToFile ("ToTXT.txt", FileFormat.Txt);}}

Document conversion effect:

These are all the contents of the article "how Java converts Word into PDF, PNG, SVG, RTF, XPS, TXT, XML". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report