J'ai une chaîne XML en tant que telle:
<?xml version='1.0'?><response><error code='1'> Success</error></response>
Il n'y a pas de lignes entre un élément et un autre et est donc très difficile à lire. Je veux une fonction qui formate la chaîne ci-dessus:
<?xml version='1.0'?>
<response>
<error code='1'> Success</error>
</response>
Sans avoir recours à l'écriture manuelle de la fonction de format moi-même, y a-t-il une bibliothèque .Net ou un extrait de code que je peux utiliser à la légère?
c#
xml
formatting
Graviton
la source
la source
XmlDocument
ce qui disqualifierait la réponse la plus votée sur cette question.Réponses:
Utilisez
XmlTextWriter
...public static string PrintXML(string xml) { string result = ""; MemoryStream mStream = new MemoryStream(); XmlTextWriter writer = new XmlTextWriter(mStream, Encoding.Unicode); XmlDocument document = new XmlDocument(); try { // Load the XmlDocument with the XML. document.LoadXml(xml); writer.Formatting = Formatting.Indented; // Write the XML into a formatting XmlTextWriter document.WriteContentTo(writer); writer.Flush(); mStream.Flush(); // Have to rewind the MemoryStream in order to read // its contents. mStream.Position = 0; // Read MemoryStream contents into a StreamReader. StreamReader sReader = new StreamReader(mStream); // Extract the text from the StreamReader. string formattedXml = sReader.ReadToEnd(); result = formattedXml; } catch (XmlException) { // Handle the exception } mStream.Close(); writer.Close(); return result; }
la source
Vous devrez analyser le contenu d'une manière ou d'une autre ... Je trouve que l'utilisation de LINQ est le moyen le plus simple de le faire. Encore une fois, tout dépend de votre scénario exact. Voici un exemple de travail utilisant LINQ pour formater une chaîne XML d'entrée.
string FormatXml(string xml) { try { XDocument doc = XDocument.Parse(xml); return doc.ToString(); } catch (Exception) { // Handle and throw if fatal exception here; don't just ignore them return xml; } }
[les instructions d'utilisation sont omises par souci de concision]
la source
doc.Declaration.ToString() + doc.ToString()
ou en utilisant à ladoc.Save
place dedoc.ToString
. Voir ce lien pour plus de détails.Celui-ci, de kristopherjohnson est beaucoup mieux:
Moins de lignes de code
static string PrettyXml(string xml) { var stringBuilder = new StringBuilder(); var element = XElement.Parse(xml); var settings = new XmlWriterSettings(); settings.OmitXmlDeclaration = true; settings.Indent = true; settings.NewLineOnAttributes = true; using (var xmlWriter = XmlWriter.Create(stringBuilder, settings)) { element.Save(xmlWriter); } return stringBuilder.ToString(); }
la source
<?xml version="1.0" encoding="UTF-8" ?>
ligne en haut) et cela a bien fonctionné.La solution simple qui fonctionne pour moi:
XmlDocument xmlDoc = new XmlDocument(); StringWriter sw = new StringWriter(); xmlDoc.LoadXml(rawStringXML); xmlDoc.Save(sw); String formattedXml = sw.ToString();
la source
Vérifiez le lien suivant:
Comment joliment imprimer du XML(Malheureusement, le lien renvoie maintenant 404 :()La méthode dans le lien prend une chaîne XML comme argument et renvoie une chaîne XML bien formée (en retrait).
Je viens de copier l'exemple de code à partir du lien pour rendre cette réponse plus complète et plus pratique.
public static String PrettyPrint(String XML) { String Result = ""; MemoryStream MS = new MemoryStream(); XmlTextWriter W = new XmlTextWriter(MS, Encoding.Unicode); XmlDocument D = new XmlDocument(); try { // Load the XmlDocument with the XML. D.LoadXml(XML); W.Formatting = Formatting.Indented; // Write the XML into a formatting XmlTextWriter D.WriteContentTo(W); W.Flush(); MS.Flush(); // Have to rewind the MemoryStream in order to read // its contents. MS.Position = 0; // Read MemoryStream contents into a StreamReader. StreamReader SR = new StreamReader(MS); // Extract the text from the StreamReader. String FormattedXML = SR.ReadToEnd(); Result = FormattedXML; } catch (XmlException) { } MS.Close(); W.Close(); return Result; }
la source
<?xml...?>
ligne. Cette réponse correspond à ce que j'avais à l'esprit au départ. Le seul point négatif serait que je préférerais les tabulations plutôt que les espaces utilisés nativement. Je me suis fixéIndentation = 1
etIndentChar = '\t'
pour obtenir exactement ce que je voulais.(this String XML)
fonctionne très bien.J'ai essayé:
internal static void IndentedNewWSDLString(string filePath) { var xml = File.ReadAllText(filePath); XDocument doc = XDocument.Parse(xml); File.WriteAllText(filePath, doc.ToString()); }
cela fonctionne bien comme prévu.
la source
.NET 2.0 ignorant la résolution de noms, et avec une élimination des ressources, une indentation, une conservation des espaces blancs et un encodage personnalisé appropriés :
public static string Beautify(System.Xml.XmlDocument doc) { string strRetValue = null; System.Text.Encoding enc = System.Text.Encoding.UTF8; // enc = new System.Text.UTF8Encoding(false); System.Xml.XmlWriterSettings xmlWriterSettings = new System.Xml.XmlWriterSettings(); xmlWriterSettings.Encoding = enc; xmlWriterSettings.Indent = true; xmlWriterSettings.IndentChars = " "; xmlWriterSettings.NewLineChars = "\r\n"; xmlWriterSettings.NewLineHandling = System.Xml.NewLineHandling.Replace; //xmlWriterSettings.OmitXmlDeclaration = true; xmlWriterSettings.ConformanceLevel = System.Xml.ConformanceLevel.Document; using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) { using (System.Xml.XmlWriter writer = System.Xml.XmlWriter.Create(ms, xmlWriterSettings)) { doc.Save(writer); writer.Flush(); ms.Flush(); writer.Close(); } // End Using writer ms.Position = 0; using (System.IO.StreamReader sr = new System.IO.StreamReader(ms, enc)) { // Extract the text from the StreamReader. strRetValue = sr.ReadToEnd(); sr.Close(); } // End Using sr ms.Close(); } // End Using ms /* System.Text.StringBuilder sb = new System.Text.StringBuilder(); // Always yields UTF-16, no matter the set encoding using (System.Xml.XmlWriter writer = System.Xml.XmlWriter.Create(sb, settings)) { doc.Save(writer); writer.Close(); } // End Using writer strRetValue = sb.ToString(); sb.Length = 0; sb = null; */ xmlWriterSettings = null; return strRetValue; } // End Function Beautify
Usage:
System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument(); xmlDoc.XmlResolver = null; xmlDoc.PreserveWhitespace = true; xmlDoc.Load("C:\Test.svg"); string SVG = Beautify(xmlDoc);
la source
Sortie Pretty XML personnalisable avec déclaration XML UTF-8
La définition de classe suivante donne une méthode simple pour convertir une chaîne XML d'entrée en XML de sortie formaté avec la déclaration xml en UTF-8. Il prend en charge toutes les options de configuration offertes par la classe XmlWriterSettings .
using System; using System.Text; using System.Xml; using System.IO; namespace CJBS.Demo { /// <summary> /// Supports formatting for XML in a format that is easily human-readable. /// </summary> public static class PrettyXmlFormatter { /// <summary> /// Generates formatted UTF-8 XML for the content in the <paramref name="doc"/> /// </summary> /// <param name="doc">XmlDocument for which content will be returned as a formatted string</param> /// <returns>Formatted (indented) XML string</returns> public static string GetPrettyXml(XmlDocument doc) { // Configure how XML is to be formatted XmlWriterSettings settings = new XmlWriterSettings { Indent = true , IndentChars = " " , NewLineChars = System.Environment.NewLine , NewLineHandling = NewLineHandling.Replace //,NewLineOnAttributes = true //,OmitXmlDeclaration = false }; // Use wrapper class that supports UTF-8 encoding StringWriterWithEncoding sw = new StringWriterWithEncoding(Encoding.UTF8); // Output formatted XML to StringWriter using (XmlWriter writer = XmlWriter.Create(sw, settings)) { doc.Save(writer); } // Get formatted text from writer return sw.ToString(); } /// <summary> /// Wrapper class around <see cref="StringWriter"/> that supports encoding. /// Attribution: http://stackoverflow.com/a/427737/3063884 /// </summary> private sealed class StringWriterWithEncoding : StringWriter { private readonly Encoding encoding; /// <summary> /// Creates a new <see cref="PrettyXmlFormatter"/> with the specified encoding /// </summary> /// <param name="encoding"></param> public StringWriterWithEncoding(Encoding encoding) { this.encoding = encoding; } /// <summary> /// Encoding to use when dealing with text /// </summary> public override Encoding Encoding { get { return encoding; } } } } }
Possibilités d'amélioration supplémentaire: -
GetPrettyXml(XmlDocument doc, XmlWriterSettings settings)
pourrait être créée pour permettre à l'appelant de personnaliser la sortie.GetPrettyXml(String rawXml)
pourrait être ajoutée qui prend en charge l'analyse du texte brut, plutôt que de laisser le client utiliser le XmlDocument. Dans mon cas, j'avais besoin de manipuler le XML en utilisant le XmlDocument, donc je n'ai pas ajouté ceci.Usage:
String myFormattedXml = null; XmlDocument doc = new XmlDocument(); try { doc.LoadXml(myRawXmlString); myFormattedXml = PrettyXmlFormatter.GetPrettyXml(doc); } catch(XmlException ex) { // Failed to parse XML -- use original XML as formatted XML myFormattedXml = myRawXmlString; }
la source
si vous chargez le XMLDoc, je suis presque sûr que la fonction .ToString () possède une surcharge pour cela.
Mais est-ce pour le débogage? La raison pour laquelle il est envoyé comme ça est de prendre moins d'espace (c'est-à-dire en supprimant les espaces inutiles du XML).
la source