我找到了一个非常棒的库来读取 CSV 文件 - FileHelpers,但我有一个奇怪的问题。我会很感激一些帮助。提前致谢 !
映射后,我总是会从右侧最后一列中删除一个字母。
我正在使用 FileHelpers.dll 版本 2.0.0 - DotNet 2.0FileHelpers_2_0_0_bin_docs_wizard.zip
例如,我有一个这样的 CSV(有些列被引用但有些没有,它可能会改变)
name;surname
"John";Smith
"Jack";Baker
并在阅读文件后:
FileHelperEngine<SemicolonsRow> engine = new FileHelperEngine<SemicolonsRow>();
engine.ErrorManager.ErrorMode = ErrorMode.SaveAndContinue;
res = engine.ReadFile("C:\\a.txt");
if (engine.ErrorManager.ErrorCount > 0)
engine.ErrorManager.SaveErrors("C:\\Log.txt");
我明白了:
res[0].Col0 with name
res[0].Col1 with surnam (lack of e at the end)
res[1].Col0 with John
res[1].Col0 with Smit (lack of h at the end)
当我读取这样的文件时:
name;surname;country
"John";Smith;USA
"Jack";Baker;Canada
问题在第三列 - 所以我得到:countr US Canad
我的 FileHelpers 类:
[IgnoreEmptyLines()]
[DelimitedRecord(";")]
public sealed class SemicolonsRow
{
[FieldOptional()]
[FieldQuoted('"', QuoteMode.OptionalForRead, MultilineMode.AllowForRead)]
public String Col0;
[FieldOptional()]
[FieldQuoted('"', QuoteMode.OptionalForRead, MultilineMode.AllowForRead)]
public String Col1;
[FieldOptional()]
[FieldQuoted('"', QuoteMode.OptionalForRead, MultilineMode.AllowForRead)]
public String Col2;
[FieldOptional()]
[FieldQuoted('"', QuoteMode.OptionalForRead, MultilineMode.AllowForRead)]
public String Col3;
}
有任何想法吗 ?