Bootstrap

请教Ado.Net按文本读取CSV/Txt文件时,如何禁止将内容转换成数字


例如现有文件内容如下:
-----------文件内容开始--------
Column1,Column2
00001234,00005678
-----------文件内容结束--------

        读得的结果是<1234, 5678>,即它“智能”地认为我里面的内容为数字;而我希望它把内容当文本来处理,期望的结果是<00001234,00005678>,请问有没有什么方法可以直接用?还是必须得用StreamReader自己去解析?谢谢J

        考虑到对用户给出的文件不作过多的要求,这里没有强制要求他们必须在内容前面加单引号('),所以文件内容如上,是没有单引号的。

附:Ado.Net读取CSV的代码(外面通过reader[index].ToString()的方式来读得数据;读取结果如上所述,我希望的预期是它把所有内容都当作文本读取,而不是数字

 1 OleDbConnection connection  =   new  OleDbConnection();
 2 // HDR=YES:标识第一行为标题行;
 3 string  strConn  =   string .Format( " Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties='Text;HDR=YES' "
 4 FileHelper.GetPath(fileFullName));
 5 connection.ConnectionString  =  strConn;
 6 // CSV格式的Excel,以不包含路径和后缀名的文件名作为Sheet的名称
 7 string  strExcel  =   string .Format( " select * from {0} " , FileHelper.GetFileNameWithExtension(fileFullName));
 8 OleDbCommand cmd  =   new  OleDbCommand(strExcel, connection);
 9 connection.Open();
10 OleDbDataReader reader  =  cmd.ExecuteReader(CommandBehavior.CloseConnection);
11 return  reader;
12

转载于:https://www.cnblogs.com/happyhippy/archive/2008/06/22/1227538.html

;