XmlDocument - โหลดจากสตริง?


88
protected void Page_Load(object sender, EventArgs e)
{
    XmlDocument doc = new XmlDocument();
    try
    {
        string path = Server.MapPath(".");
        doc.Load(path+"whatever.xml");
    }
    catch (Exception ex)
    {
        lblError.Text = ex.ToString();
        return;
    }

    // Convert XML to a JSON string
    string JSON = XmlToJSON(doc);

    // Replace \ with \\ because string is being decoded twice
    JSON = JSON.Replace(@"\", @"\\");

    // Insert code to process JSON at end of page
    ClientScriptManager cs = Page.ClientScript;
    cs.RegisterStartupScript(GetType(), "SpaceJSON", "space_processJSON('" + JSON + "');", true);
}

แทนที่จะโหลด xml จากไฟล์ฉันจะโหลดจากสตริงได้อย่างไร


3
เงยหน้าขึ้นมองระดับXmlDocument คุณจะคิดออกเองอย่างรวดเร็ว
John Saunders

คำตอบ:


208
XmlDocument doc = new XmlDocument();
doc.LoadXml(str);

strสตริง XML ของคุณอยู่ที่ไหน ดูบทความ MSDNสำหรับข้อมูลเพิ่มเติม


แล้ว XmlDocument ใหม่ () {InnerXml = str} ล่ะ
mko

ผมคิดว่าไม่มากกว่าเพียงแค่การตั้งค่าLoadXml() referencesource.microsoft.com/#System.Xml/System/Xml/Dom/…InnerXml
Vinicius Brasil
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.