c# – File.AppendAllText默认编码

前端之家收集整理的这篇文章主要介绍了c# – File.AppendAllText默认编码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现有代码调用File.AppendAllText(文件名,文本)重载以将文本保存到文件.

我需要能够在不破坏向后兼容性的情况下指定编码.如果我要使用File.AppendAllText(文件名,文本,编码)重载哪个编码我需要指定以确保文件以完全相同的方式创建?

解决方法

AppendAllText()的两个参数重载最终使用不带BOM的UTF-8编码调用内部方法File.InternalAppendAllText():
[SecuritySafeCritical]
public static void AppendAllText(string path,string contents)
{
    if (path == null) {
        throw new ArgumentNullException("path");
    }
    if (path.Length == 0) {
        throw new ArgumentException(
            Environment.GetResourceString("Argument_EmptyPath"));
    }
    File.InternalAppendAllText(path,contents,StreamWriter.UTF8NoBOM);
}

因此,你可以写:

using System.IO;
using System.Text;

File.AppendAllText(filename,text,new UTF8Encoding(false,true));
原文链接:https://www.f2er.com/csharp/101082.html

猜你在找的C#相关文章