How to Pretty Print XML in Java Using XSLT?
Dec 14, 2024 pm 10:00 PMPretty Printing XML in Java
Given a Java String containing unformatted XML, the objective is to transform it into a well-structured XML String with proper line breaks and indentation.
Solution:
-
Instantiate a Transformer:
Transformer transformer = TransformerFactory.newInstance().newTransformer();
Copy after login -
Set Output Properties:
transformer.setOutputProperty(OutputKeys.INDENT, "yes"); transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
Copy after login -
Create a StreamResult for Output:
StreamResult result = new StreamResult(new StringWriter());
Copy after login -
Create a DOMSource for the Input String:
DOMSource source = new DOMSource(doc);
Copy after login -
Transform Source to Result:
transformer.transform(source, result);
Copy after login -
Retrieve Formatted XML String:
String xmlString = result.getWriter().toString();
Copy after login
Code Example:
String unformattedXml = "<tag><nested>hello</nested></tag>"; Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty(OutputKeys.INDENT, "yes"); transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2"); StreamResult result = new StreamResult(new StringWriter()); DOMSource source = new DOMSource(doc); transformer.transform(source, result); String formattedXml = result.getWriter().toString(); System.out.println(formattedXml);
Note: The specific results may vary depending on the Java version used. Modifications might be necessary to cater to specific platforms.
The above is the detailed content of How to Pretty Print XML in Java Using XSLT?. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?

Node.js 20: Key Performance Boosts and New Features

How does Java's classloading mechanism work, including different classloaders and their delegation models?

Iceberg: The Future of Data Lake Tables

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?

How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?
