Read the complete article on how to convert TXT to XML in Java: https://blog.aspose.com/2022/08/03/convert-txt-to-xml-in-java/
Last active
August 4, 2022 07:04
-
-
Save aspose-com-gists/ec3058f18313358c2b558797b477f51e to your computer and use it in GitHub Desktop.
Convert TXT File to XML in Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load Excel file | |
Workbook wb = new Workbook("text.txt"); | |
// Save as JSON | |
wb.save("TXT_to_XML.xml", SaveFormat.XML); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment