将学位符号 (°) 从 excel 或 csv 文件导入到 mssql 数据库
我的 csv 文件中有一个字段,其中包含文本:Frozen at 20°C,
但是当我导入数据库时,它显示为:Frozen at 20°C
有人知道如何保留正确的度数符号吗?
我的导入代码如下所示
string fieldValue = csv[i].Trim();
I have a field in my csv file which contains the text: Frozen at 20°C
but when i import into my database it appears as: Frozen at 20�C
anyone know how i can keep the correct degree symbol?
my import code looks like this
string fieldValue = csv[i].Trim();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只需要在创建流阅读器时指定 Encoding.Default
感谢 Stephane 的所有帮助,您最终让我到达了那里。
I just needed to specify Encoding.Default when creating my stream reader
Thanks for all the help Stephane you got me there in the end.