vote up 1 vote down star

Hi everyone,

I have a string and its value is:

<ROOT>
    qwerty
    <SampleElement>adsf</SampleElement> 
    <SampleElement2>The text of the sample element2</SampleElement2> 
</ROOT>

How can I write this string to a file using C# 3.0?

Thanks in advance.

flag
The title is very misleading. It should really say something about file I/O in C# – Akrikos Feb 26 at 15:12
Andrew why the rollback? – LFSR Consulting Feb 26 at 15:19
I think we should try to respect the original post as much as possible including the "Hi everyone" stuff as that was what the OP wrote. Nothing personal :) – Andrew Hare Feb 26 at 15:21
Fair enough - When you rollback could you throw some rational in so as to prevent the rollback wars we've been seeing in the last couple of days! :D – LFSR Consulting Feb 26 at 15:23
Ah yes! That is excellent advice - I will do that in the future - thanks! – Andrew Hare Feb 26 at 15:23

7 Answers

vote up 6 vote down

Try this:

string s = "<xml><foo></foo></xml>";
XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(s);
xdoc.Save("myfilename.xml");

Has the added benefit that the load will fail if your XML is invalid.

link|flag
vote up 2 vote down

Here is a good tutorial on file IO using C#.

link|flag
vote up 1 vote down
File.WriteAllText("myFile.xml",myString);
link|flag
vote up 0 vote down

You'll have to use CDATA section. More specifically, create a XmlCDataSection using XmlDocument.CreateCDataSection and supply your string as a parameter.

link|flag
vote up 0 vote down

you could alway use XLINQ. check here for a quick primer....

link|flag
vote up -1 vote down

As the string doesn't look like regular XML, I suppose that you want to write it as a value in an XML file. If you use any of the built in classes to create the XML, the value will be correctly encoded not to disturb the XML code. Example:

using (XmlWriter writer = XmlWriter.Create(fileName)) {
  writer.WriteStartDocument();
  writer.WriteStartElement("data");
  writer.WriteElementString("text", theString);
  writer.WriteEndElement();
}

If you want to write only the string to a file, that is quite simple:

File.WriteAllText(fileName, theString)
link|flag
What in the sample XML isn't valid ? – andynormancx Feb 26 at 15:21
In the ROOT element you have both a value and child elements. – Guffa Feb 26 at 15:23
There is nothing invalid about the root node having both a value and child elements. – andynormancx Feb 26 at 15:38
Ok, on further study it is actually not invalid per se, only rarely used. I would not recommend it. – Guffa Feb 26 at 16:27
Maybe it would be good to delete your answer ? – andynormancx Feb 26 at 17:22
show 5 more comments
vote up -2 vote down

I know you said C# but have you tried VB.NET for XML Literals. Amazing stuff.

Public Class Program
    Public Shared Sub Main()
        Dim myKeyBoardStyle = "dvorak"

        Dim myXML As XElement = <ROOT>
                                qwerty
                                <altKeyboard><%= myKeyBoardStyle.ToUpper() %></altKeyboard>
                                    <SampleElement>adsf</SampleElement>
                                    <SampleElement2>The text of the sample element2</SampleElement2>
                                </ROOT>

        Console.WriteLine(myXML.ToString())

        myXML.Save(".\fileFromXElement.xml")
    End Sub
End Class

Notice the neat element which injects the result of code in into the output:

<?xml version="1.0" encoding="utf-8"?>
<ROOT>
                                qwerty
                                <altKeyboard>DVORAK</altKeyboard><SampleElement>adsf</SampleElement><SampleElement2>The text of the sample element2</SampleElement2></ROOT>

snip [removed opinions]

link|flag
This is not a case of the right tool for the job. Your post is an example of the limitations of only knowing one tool and trying to force everything into it. If the OP is using C# for everything else, the introduction of VB.NET simply to save an XML string is ridiculous. – Ken White Feb 26 at 18:39
No My post in an example of what an open mind can do by using projects of more than one language in the same solution. The VB language syntax is very easy to use for XML. I use both VB and C#. It is unclear how much "everything else" is done in C# by pragadheesh. Perhaps he explores alternatives. – Mike Bonnell Feb 26 at 20:30
I still say introducing another language for the simple purpose of saving an XML string is ridiculous. Actually open your mind and think about what you're proposing: "Gee, I'll bring in a bulldozer, even though all I need is a trowel, to move this cup full of sand into the garden." – Ken White Feb 26 at 20:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.