2

私はプレイスクラスを次のように定義しました:

    public class place
    {
            public string placeID { get; set; }
            public string placeCatID { get; set; }
            public string placeName { get; set; }
    }

そして、リスト内のデータストアはプレースリストを呼び出します

    List<place> placelist = new List<place>();

次のように、プレースリストを文字列に変換する方法、またはエクスポートしてXMLファイル形式で保存する方法を教えてください。

    <place>
            <pID>0001</pID>
            <pCatID>C1</pID>
            <pName>Location 1</pName>
    </place>
    <place>
            <pID>0002</pID>
            <pCatID>C1</pID>
            <pName>Location 2</pName>
    </place>

使用する言語はC#です

ありがとう。

4

5 に答える 5

4

XMLにシリアル化する任意のシリアライザーを使用できます。DataContractSerializerをお勧めします

MSDNから:

DataContractSerializer s = new DataContractSerializer(typeof(T));
    using (FileStream fs = File.Open("test" + typeof(T).Name + ".xml", FileMode.Create))
    {
        Console.WriteLine("Testing for type: {0}", typeof(T)); 
        s.WriteObject(fs, obj);
    }

http://msdn.microsoft.com/en-us/library/bb675198.aspx

あなたの場合、TをList<T>

于 2012-06-09T02:54:00.153 に答える
2

つまり、次のオプションを利用できます。

于 2012-06-09T02:58:14.423 に答える
2

以下の解決策はですXmlSerializerが、使用することもできますDataContractSerializerXmlSerializerデフォルトですべてのフィールドをシリアル化しDataContractSerializerます。シリアル化する対象を明示的に指定する必要があります。

カスタム要素名を持つためにシリアル化属性を追加します。

public class place
{
    [XmlElement("pID")]
    public string placeID { get; set; }
    [XmlElement("pCatID")]
    public string placeCatID { get; set; }
    [XmlElement("pName")]
    public string placeName { get; set; }
}

シリアル化のコード:

var ser = new XmlSerializer(typeof(List<place>));
TextWriter writer = new StreamWriter(@"C:\1.xml");
// o is List<place> here
ser.Serialize(writer, o);

XML:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPlace xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <place>
    <pID>1</pID>
    <pCatID>2</pCatID>
    <pName>3</pName>
  </place>
  <place>
    <pID>3</pID>
    <pCatID>4</pCatID>
    <pName>5</pName>
  </place>
</ArrayOfPlace>
于 2012-06-09T03:14:41.300 に答える
0

独自のToXml()メソッドを作成するか、を使用できますDataContractSerializer

于 2012-06-09T02:51:48.070 に答える
0

オブジェクトのデータをBinary、XML、またはJsonに保存することについてのブログ投稿を書きました。クラス変数の名前をxmlファイルでコードとは異なるものにする必要があるため、各パブリックプロパティを[XmlElement( "NameToShowUpInXmlFileGoesHere")]で装飾する必要があります。

それができたら、次の関数を呼び出して、オブジェクトインスタンスをファイルに保存およびファイルからロードします。

注:これには、System.Xmlアセンブリがプロジェクトに含まれている必要があります。

/// <summary>
/// Writes the given object instance to an XML file.
/// <para>Only Public properties and variables will be written to the file. These can be any type though, even other classes.</para>
/// <para>If there are public properties/variables that you do not want written to the file, decorate them with the [XmlIgnore] attribute.</para>
/// <para>Object type must have a parameterless constructor.</para>
/// </summary>
/// <typeparam name="T">The type of object being written to the file.</typeparam>
/// <param name="filePath">The file path to write the object instance to.</param>
/// <param name="objectToWrite">The object instance to write to the file.</param>
/// <param name="append">If false the file will be overwritten if it already exists. If true the contents will be appended to the file.</param>
public static void WriteToXmlFile<T>(string filePath, T objectToWrite, bool append = false) where T : new()
{
    TextWriter writer = null;
    try
    {
        var serializer = new XmlSerializer(typeof(T));
        writer = new StreamWriter(filePath, append);
        serializer.Serialize(writer, objectToWrite);
    }
    finally
    {
        if (writer != null)
            writer.Close();
    }
}

/// <summary>
/// Reads an object instance from an XML file.
/// <para>Object type must have a parameterless constructor.</para>
/// </summary>
/// <typeparam name="T">The type of object to read from the file.</typeparam>
/// <param name="filePath">The file path to read the object instance from.</param>
/// <returns>Returns a new instance of the object read from the XML file.</returns>
public static T ReadFromXmlFile<T>(string filePath) where T : new()
{
    TextReader reader = null;
    try
    {
        var serializer = new XmlSerializer(typeof(T));
        reader = new StreamReader(filePath);
        return (T)serializer.Deserialize(reader);
    }
    finally
    {
        if (reader != null)
            reader.Close();
    }
}

public class place
{
    [XmlElement("pID")]
    public string placeID { get; set; }
    [XmlElement("pCatID")]
    public string placeCatID { get; set; }
    [XmlElement("pName")]
    public string placeName { get; set; }
}

// To write the placeList variable contents to XML.
WriteToXmlFile<List<place>>("C:\places.txt", placeList);

// To read the xml file contents back into a variable.
List<place> placeList= ReadFromXmlFile<List<place>>("C:\places.txt");
于 2014-03-14T22:50:09.870 に答える