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
'programing' 카테고리의 다른 글
"알 수 없는 공급자" 오류의 원인 찾기 (0) | 2023.02.15 |
---|---|
Spring의 GA, RC 및 M2 릴리즈의 차이점은 무엇입니까? (0) | 2023.02.15 |
개체를 JSON에 직렬화하는 방법 (0) | 2023.02.15 |
Wordpress 플러그인 API로 .htaccess를 편집하시겠습니까? (0) | 2023.02.15 |
봄 MVC 3에서는 ModelAndView를 반환하면서 쿠키를 작성하는 방법은 무엇입니까? (0) | 2023.02.15 |