■ XmlSerializer 클래스를 사용해 객체에서 XML 파일을 저장하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
using System.IO; using System.Xml.Serialization; #region XML 저장하기 - SaveXML(sourceObject, targetFilePath) /// <summary> /// XML 저장하기 /// </summary> /// <param name="sourceObject">소스 객체</param> /// <param name="targetFilePath">타겟 파일 경로</param> public void SaveXML(object sourceObject, string targetFilePath) { StreamWriter streamWriter = null; try { string directoryPath = Path.GetDirectoryName(targetFilePath); if(!Directory.Exists(directoryPath)) { Directory.CreateDirectory(directoryPath); } streamWriter = new StreamWriter(targetFilePath); XmlSerializer xmlSerializer = new XmlSerializer(sourceObject.GetType()); xmlSerializer.Serialize(streamWriter, sourceObject); } finally { if(streamWriter != null) { streamWriter.Close(); streamWriter = null; } } } #endregion |