3

我对 csv 文件中的字符有问题,它是带有 ? 的黑色菱形。在中间。

我已经编写了解析 csv 的代码,但我不明白为什么字符串没有正确读取 unicode 字符。这可能与我的实现有关:

StreamReader readFile = new StreamReader(path)

try {
  while ((line = readFile.ReadLine()) != null) {
    string[] row = { "", "", "" };
    int currentItem = 0;
    bool inQuotes = false;
    if (skippedFirst && currentItem != 3) {
      for (int i = 0; i < line.Length; i++) {
        if (!inQuotes) {
          if (line[i] == '\"')
            inQuotes = true;
          else {
            if (line[i] == ',')
              currentItem++;
            else
              row[currentItem] += line[i];
          }
        } else {
          if (line[i] == '\"')
            inQuotes = false;
          else
            row[currentItem] += line[i];
        }
      }
      parsedFile.Add(row);
    }
    skippedFirst = true;
  }
4

1 回答 1

9

打开文件时指定编码。

using (var sr = new StreamReader(@"c:\Temp\csvfile.csv", Encoding.UTF8)) {
}

您可能还想查看用于 CSV 解析的 Filehelpers:

http://www.filehelpers.com/quick_start.html

于 2012-06-18T10:48:31.380 回答