如何在xml中还有保留这些空字段的列名呢目前过程
1.通过Microsoft.Jet.OLEDB.4.0; Extended Properties=Excel 8.0 写入dataset中
2.再通过dateset WriteXmlexcel中有5个列,其中有一列内容为空
现在的结果:(如<Field1>为空就没有出现)<xlsTab>
  <Field0>00001</Field0> 
  <Field2>aa</Field3> 
  <Field3>bb</Field3> 
  <Field3>cc</Field3> 
  </xlsTab>如何让<Field1>出现了,变成:
<xlsTab>
  <Field0>00001</Field0> 
<Field1/>
  <Field2>aa</Field3> 
  <Field3>bb</Field3> 
  <Field3>cc</Field3> 
  </xlsTab>