4

ユーザー入力に基づいて XML ファイルを動的に作成する必要があります。

これが私が思いついたものであり、2つの問題にぶつかっています。

  1. 同じ要素のコレクションがある場合 (MaxOccurs = 10) (たとえば、ユーザーが 4 つのアカウントを入力した場合、私のコードはどうあるべきか)
  2. 選択肢があれば。選択した要素に基づいて、子要素を変更する必要があります。

誰か助けてください。

前もって感謝します

BB

私のコード:

XElement req = 
    new XElement("order",
        new XElement("client", 
            new XAttribute("id", clientId),
            new XElement("quoteback", 
                new XAttribute ("name",quotebackname)
                )  
            ),
        new XElement("accounting",
            new XElement("account"),
            new XElement("special_billing_id")
            ),
        new XElement("products",
            new XElement(
                **productChoiceType**,
                ***** HERE THE ELEMENTS WILL CHAGE BASED ON  **productChoiceType**           
                )
            )
        )
    );
4

3 に答える 3

6

LINQ は次のような場合に役立ちます。

XElement req = 
    new XElement("order",
        new XElement("client", 
            new XAttribute("id",clientId),
            new XElement("quoteback", new XAttribute ("name",quotebackname))  
            ),
        new XElement("accounting",
            new XElement("account"),
            new XElement("special_billing_id")
            ),
            new XElement("products", 
                new XElement(productChoices.Single(pc => pc.ChoiceType == choiceType).Name, 
                    from p in products
                    where p.ChoiceType == choiceType
                    select new XElement(p.Name)
              )
          )
      );
于 2010-11-16T22:44:07.323 に答える
2

代わりにXmlWriterオブジェクトを使用してください。少なくとも、必要な種類の操作を行う方が簡単です。次に、次のように構造化できます。

XmlWriter w = XmlWriter.Create(outputStream);
w.WriteStartElement("order");

w.WriteStartElement("client");
w.WriteAttributeString("id", clientId);

// ...
w.WriteElementString("product", "1");
w.WriteElementString("product", "2");
w.WriteElementString("product", "3");
w.WriteElementString("product", "4");

// etc....

w.WriteEndElement(); // client

w.WriterEndElement(); // order
于 2010-11-16T22:10:39.127 に答える
0

または、XML に変換する型ごとにクラスを作成し、XmlSerializer を使用します。

<XmlElement("order")> _
Public Class Order
    <XmlElement("accounting")> _
    Dim accounts As List(Of Account)
    ...
End Class

Dim xmlSer as New XmlSerialzer(GetType(Accounting))
xmlSer.Serialize(myXmlWriter, myObjInstance)
于 2010-11-16T22:34:15.563 に答える