我正在讀取一個CSV文件到數據集中,現在想要得到xml字符串。我無法得到XML格式良好的標籤。我在這裏做什麼?Dataset.GetXml();問題在C#
案例1:如果我在CSV文件中使用標題
案例2:用了航向。
我需要得到相同的標記標題,以便稍後可以在我的代碼中使用。 這裏是我的xml
<NewDataSet>
<Table>
<George_x0020_Washington>John Adams</George_x0020_Washington>
<http_x003A__x002F__x002F_en_x0023_wikipedia_x0023_org_x002F_wiki_x002F_George_Washington>http://en.wikipedia.org/wiki/John_Adams</http_x003A__x002F__x002F_en_x0023_wikipedia_x0023_org_x002F_wiki_x002F_George_Washington>
<Independent_x0020_>Federalist</Independent_x0020_>
<GeorgeWashington_x0023_jpg>JohnAdams.jpg</GeorgeWashington_x0023_jpg>
<thmb_GeorgeWashington_x0023_jpg>thmb_JohnAdams.jpg</thmb_GeorgeWashington_x0023_jpg>
<Virginia>Massachusetts</Virginia>
</Table></NewDataSet>
,這裏是我的代碼
OleDbConnection excelConnection = new OleDbConnection
(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + pathName + ";Extended Properties=Text;");
OleDbCommand excelCommand = new OleDbCommand(@"SELECT * FROM HS1.csv", excelConnection);
OleDbDataAdapter excelAdapter = new OleDbDataAdapter(excelCommand);
excelConnection.Open();
DataSet ds = new DataSet();
excelAdapter.Fill(ds);