programing

XmlDocument - 문자열에서 로드하시겠습니까?

newsource 2023. 2. 15. 22:05

XmlDocument - 문자열에서 로드하시겠습니까?

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을 로드하는 대신 문자열에서 로드하려면 어떻게 해야 합니까?

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

어디에str는 XML 문자열입니다.상세한 것에 대하여는, MSDN 문서를 참조해 주세요.

언급URL : https://stackoverflow.com/questions/4929653/xmldocument-load-from-string