将多个.xml文件导入数据集
本文关键字:导入 数据集 文件 xml | 更新日期: 2023-09-27 18:01:27
我想这样做:
我想从一个文件夹(让我们说C:'Bla'AllMyLittleXmlFiles
)导入所有的xml文件到一个数据集,做的东西到它,并从那里导出到SQL Server。这可能吗?似乎数据集在每次成功读取文件后都会清理自己,只留下第一个文件的数据。
StringBuilder fileNames = new StringBuilder();
ArrayList filePaths = new ArrayList();
FolderBrowserDialog folder = new FolderBrowserDialog();
folder.ShowDialog();
int pathLength = folder.SelectedPath.Length;
foreach (string file in Directory.EnumerateFiles(folder.SelectedPath))
{
string fielname = file.ToString().Substring(pathLength + 1);
string filepath = file.ToString();
fileNames.AppendLine(fielname);
filePaths.Add(filepath);
}
// textBox1.Text = filePaths[0].ToString();
DataSet aDS = new DataSet();
StringBuilder uh = new StringBuilder();
int filesImported = 0;
foreach (object ob in filePaths)
{
string test = ob.ToString();
uh.Append(test);
aDS.ReadXml(ob.ToString());
filesImported++;
}
int tablesimported = 0;
foreach (DataTable table in aDS.Tables)
{
dataGridView1.DataSource = table.DefaultView;
tablesimported++;
}
MessageBox.Show("Files Imported:" + filesImported.ToString() + " Tables Imported : " + tablesimported.ToString());
textBox1.Text = uh.ToString();
编辑在尝试了一些答案后,我留下了这个:
int filesImported = 0;
foreach (object ob in filePaths)
{
dsCollection[filesImported].ReadXml(ob.ToString());
filesImported++;
}
int tablesImported = 0;
foreach (DataSet ds in dsCollection)
{
foreach (DataTable table in ds.Tables)
{
mainDS.Merge(table);
tablesImported++;
}
}
则调用dsCollection上的Merge
方法。唯一的问题是,dscollection中的数据集永远不会实例化,所以…
也许你可以创建主数据集,并在读取xml到临时数据集后尝试合并这些数据集,像这样:
mainDataSet.Merge(tempDataSet);
这将解决我们的问题,虽然不确定是否有效…
DataSet[] aDS = new DataSet[filePaths.Count];
StringBuilder uh = new StringBuilder();
int filesImported = 0;
foreach (object ob in filePaths)
{
string test = ob.ToString();
uh.Append(test);
//every xml file gets its own dataset
//so that new read operation will not clear data
aDS[filesImported].ReadXml(ob.ToString());
filesImported++;
}
int tablesimported = 0;
foreach (DataSet ds in aDS)
{
foreach (DataTable table in ds.Tables)
{
dataGridView1.DataSource = table.DefaultView;
tablesimported++;
}
}
试试这个:
foreach (object ob in filePaths)
{
string test = ob.ToString();
uh.Append(test);
DataSet tmpDS = new DataSet();
tmpDS.ReadXml(ob.ToString());
aDS.Merge(tmpDS);
filesImported++;
}
这将为每个文件留下一个数据集表,这似乎是你正在寻找的。
编辑:[向@Reniuz道歉,他向你指出了完全相同的方向,但早了20分钟!)
我臃肿低效的解决方案....我很失望。
感谢Niko和Reniuz为我指明了正确的方向。
private ArrayList GetFilePaths()
{
ArrayList filePaths = new ArrayList();
FolderBrowserDialog folder = new FolderBrowserDialog();
folder.ShowDialog();
foreach (string filePath in Directory.EnumerateFiles(folder.SelectedPath))
{
filePaths.Add(filePath.ToString());
}
return filePaths;
}
private void ImportXmls(ArrayList filePaths)
{
DataSet[] tempDSCollection = new DataSet[filePaths.Count];
int impFiles = 0;
foreach (object ob in filePaths)
{
DataSet impDS = new DataSet();
impDS.ReadXml(ob.ToString());
tempDSCollection[impFiles] = impDS;
impFiles++;
}
foreach (DataSet aDS in tempDSCollection)
{
foreach (DataTable table in aDS.Tables)
{
mainDS.Merge(table);
}
}
}
我会继续改进和更新,但现在只能这样了
try this:
DataSet ds = new Dataset();
for(int x=0;x<Filepath.Count;x++)
{
ds.ReadXml(Filepath[x].ToString());
}