C# interop.excel workbooks.opentext 方法 fieldinfo 不起作用
Fieldinfo 可以读取不同格式的文本文件,但它似乎不适合我。我尝试了 http://msdn.microsoft.com/en-us/ 上的内容库/bb223513.aspx。
object fieldInfo = new int[21, 2] {{ 1, 2 },{ 2, 2 },{ 3, 2 }, { 4, 2 },{ 5, 2 },{ 6, 2 },{ 7, 2 },{ 8, 1 },{ 9, 1 },{ 10, 1 },
{ 11, 1 },{ 12, 1 },{ 13, 1},{ 14, 2 },{ 15, 1},{ 16, 1 },{17, 2},{ 18, 2 },{ 19, 2 },{ 20, 2 }, { 21, 2 }
};
xlApp.Workbooks.OpenText(myZdrive + @"\CI_System\Source_Files\" + myPosFile, XlPlatform.xlWindows, 1,
XlTextParsingType.xlDelimited,
XlTextQualifier.xlTextQualifierNone, false, true, false, false, false, false, false, fieldInfo);
Fieldinfo can read text file in different format, but it seems not to be working for me. I tried what is on http://msdn.microsoft.com/en-us/library/bb223513.aspx.
object fieldInfo = new int[21, 2] {{ 1, 2 },{ 2, 2 },{ 3, 2 }, { 4, 2 },{ 5, 2 },{ 6, 2 },{ 7, 2 },{ 8, 1 },{ 9, 1 },{ 10, 1 },
{ 11, 1 },{ 12, 1 },{ 13, 1},{ 14, 2 },{ 15, 1},{ 16, 1 },{17, 2},{ 18, 2 },{ 19, 2 },{ 20, 2 }, { 21, 2 }
};
xlApp.Workbooks.OpenText(myZdrive + @"\CI_System\Source_Files\" + myPosFile, XlPlatform.xlWindows, 1,
XlTextParsingType.xlDelimited,
XlTextQualifier.xlTextQualifierNone, false, true, false, false, false, false, false, fieldInfo);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用 Excel 互操作。使用 OpenXml SDK。
您可以在这里下载:
http://www.microsoft.com/download/en/details.aspx ?id=5124
这是一篇解释如何使用它的文章:
http://msdn.microsoft.com/en -us/library/dd469465%28v=office.12%29.aspx
Don't use the Excel interop. Use the OpenXml SDK.
You can download it here:
http://www.microsoft.com/download/en/details.aspx?id=5124
Here is an article explaining how to use it:
http://msdn.microsoft.com/en-us/library/dd469465%28v=office.12%29.aspx