C# 利用多线程进行,导入和导出! 希望各位能给一个实例! 最好有注释...

发布网友 发布时间:2024-10-24 18:48

我来回答

4个回答

热心网友 时间:3分钟前

使用process执行外部命令就可以了,本人比较懒只提供思路

热心网友 时间:2分钟前

如果是多线程处理
请注意并发
要不就铥内存里

热心网友 时间:5分钟前

使用process执行外部命令:
Process myApp = new Process();

myApp.StartInfo.CreateNoWindow=false;
myApp.StartInfo.FileName = "bcp.exe";
myApp.StartInfo.Arguments = "bcp AdventureWorks.sales.currency out c:\\currency1.txt -c -U \"sa\" -P \"password\"";//使用密码连接,导出数据,out改为in则为导入,currency1.txt改为currency1.xls即为excel

//bcp AdventureWorks.sales.currency out c:\currency1.txt -c -T //使用信任连接

myApp.StartInfo.UseShellExecute = false;
myApp.StartInfo.RedirectStandardOutput=true;

myApp.Start();

热心网友 时间:5分钟前

你是需要远程导入还是本机导入
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com