0
私は私のファイルは、要素に一致し、私はウェブ上でのExcelシートからこのデータを取得しています覚えておいてください以下
<employees><employee><employeeId>employeeid</employeeId>
<hireDate>Hiredate</hireDate>
</employee>
<employee>
<employeeId>employeeid</employeeId>
<hireDate>Hiredate</hireDate>
</employee>
<employees>
<staffingHours processType="merge">
<staffHours>
<employeeId>employeeid</employeeId>
<workDays>
<workDay>
<date>date</date>
<hourEntries>
<hourEntry>
<hours>hours</hours>
<jobTitleCode>titlecode</jobTitleCode>
<payTypeCode>paycode</payTypeCode>
</hourEntry></hourEntries>
</workDay>
</workDays>
</staffHours>
</staffingHours>
属性ことを確認するように私の要素で助けを必要と
ページ以下は、XMLファイルを生成するコードです。グリッドビューレコードの各ループにaを使用しています。
XmlElement Empoyees = xmldoc.CreateElement("Employees");
XmlElement newDept = xmldoc.CreateElement("Employee");
XmlElement NurseId = xmldoc.CreateElement("employeeid");
newDept.AppendChild(NurseId);
NurseId.InnerText = row.Cells[0].Text;
XmlElement Firstname = xmldoc.CreateElement("Firstname");
newDept.AppendChild(Firstname);
Firstname.InnerText = row.Cells[1].Text;
//Second node and data source
XmlElement Lastname = xmldoc.CreateElement("Lastname");
newDept.AppendChild(Lastname);
Lastname.InnerText = row.Cells[2].Text;
//Third node and data source
XmlElement Starthour = xmldoc.CreateElement("StartDate");
newDept.AppendChild(Starthour);
Starthour.InnerText = row.Cells[5].Text;
//Fourth node and data source
XmlElement EndDate = xmldoc.CreateElement("EndDate");
newDept.AppendChild(EndDate);
EndDate.InnerText = row.Cells[6].Text;
XmlElement TotalHours = xmldoc.CreateElement("TotalHours");
newDept.AppendChild(TotalHours);
TotalHours.InnerText = row.Cells[10].Text;
XmlElement Starttime = xmldoc.CreateElement("Starttime");
newDept.AppendChild(Starttime);
Starttime.InnerText = row.Cells[11].Text;
XmlElement EndTime = xmldoc.CreateElement("EndTime");
newDept.AppendChild(EndTime);
EndTime.InnerText = row.Cells[12].Text;
//Fourth node and data source
XmlElement HireDate = xmldoc.CreateElement("HireDate");
newDept.AppendChild(HireDate);
HireDate.InnerText = row.Cells[8].Text;
//write to the xml document
xmldoc.DocumentElement.InsertAfter(newDept, xmldoc.DocumentElement.LastChild);
すべての助けに感謝します。
下記参照これに助けが必要考え出しましたか? Java? C#? – jwodder
私はC#とVS2017を使用しています –
なぜ助けが必要ですか?ペーストしたコードの何が問題になっていますか? –