Outil en ligne de compression XML
À propos deOutil en ligne de compression XML:
Cet outil en ligne de compression XML vous aide à compresser des chaînes XML brutes et à économiser de l'espace pour un transfert plus rapide sur le réseau.
Plus de liens vers XML (Extensible Markup Language):
RFC 3470 (XML): https://tools.ietf.org/html/rfc3470
XML en Python (BeautifulSoup): https://www.crummy.com/software/BeautifulSoup/
XML en Java (dom4j): https://dom4j.github.io/
Compresser les chaînes XML en Python (avec le package htmlmin):
from htmlmin.minify import html_minify def xml_minify(xml_str): xml_str = html_minify(xml_str, parser="lxml") return xml_str
Compresser les chaînes XML en Java (avec le package dom4j):
import org.dom4j.Document; import org.dom4j.DocumentHelper; import org.dom4j.io.OutputFormat; import org.dom4j.io.XMLWriter; public String minify(String xmlStr){ Document document=DocumentHelper.parseText(xmlStr); OutputFormat format=OutputFormat.createPrettyPrint(); StringWriter stringWriter=new StringWriter(); XMLWriter writer=new XMLWriter(stringWriter,format); writer.write(document); String resultStr=stringWriter.toString(); return resultStr; }
Outils connexes
Outil en ligne de formatage JSON
Outil en ligne de compression JSON
Outil en ligne de formatage XML
Outil en ligne de compression XML
Outil en ligne JSON to XML
Outil en ligne XML to JSON
Outil en ligne de formatage HTML
Outil en ligne de compression HTML
Outil de mise en forme Javascript en ligne
Outil en ligne de compression Javascript
Outil en ligne de formatage CSS
Outil en ligne de compression CSS