• StreamWriter and UTF-8 Byte Order Marks


    StreamWriter and UTF-8 Byte Order Marks

    I'm having an issue with StreamWriter and Byte Order Marks. The documentation seems to state that the Encoding.UTF8 encoding has byte order marks enabled but when files are being written some have the marks while other don't.

    I'm creating the stream writer in the following way:

    this.Writer = new StreamWriter(this.Stream, System.Text.Encoding.UTF8);
    

    Any ideas on what could be happening would be appreciated.

    回答1

    As someone pointed that out already, calling without the encoding argument does the trick. However, if you want to be explicit, try this:

    using (var sw = new StreamWriter(this.Stream, new UTF8Encoding(false)))
    

    The key is to construct a new UTF8Encoding(false), instead of using Encoding.UTF8Encoding. That's to control if BOM should be added or not.

    This is the same as calling StreamWriter without the encoding argument, internally it's just doing the same thing.

    回答2

    The issue is due to the fact that you are using the static UTF8 property on the Encoding class.

    When the GetPreamble method is called on the instance of the Encoding class returned by the UTF8 property, it returns the byte order mark (the byte array of three characters) and is written to the stream before any other content is written to the stream (assuming a new stream).

    You can avoid this by creating the instance of the UTF8Encoding class yourself, like so:

    // As before.
    this.Writer = new StreamWriter(this.Stream, 
        // Create yourself, passing false will prevent the BOM from being written.
        new System.Text.UTF8Encoding());
    

    As per the documentation for the default parameterless constructor (emphasis mine):

    This constructor creates an instance that does not provide a Unicode byte order mark and does not throw an exception when an invalid encoding is detected.

    This means that the call to GetPreamble will return an empty array, and therefore no BOM will be written to the underlying stream.

    回答3

    The only time I've seen that constructor not add the UTF-8 BOM is if the stream is not at position 0 when you call it. For example, in the code below, the BOM isn't written:

    using (var s = File.Create("test2.txt"))
    {
        s.WriteByte(32);
        using (var sw = new StreamWriter(s, Encoding.UTF8))
        {
            sw.WriteLine("hello, world");
        }
    }
    

    As others have said, if you're using the StreamWriter(stream) constructor, without specifying the encoding, then you won't see the BOM.

    UTF8Encoding(Boolean)

    This constructor creates an instance that does not throw an exception when an invalid encoding is detected.

     Caution

    For security reasons, you should enable error detection by calling a constructor that includes a throwOnInvalidBytes parameter and setting its value to true.

    The encoderShouldEmitUTF8Identifier parameter controls the operation of the GetPreamble method. If true, the method returns a byte array containing the Unicode byte order mark (BOM) in UTF-8 format. If false, it returns a zero-length byte array. However, setting encoderShouldEmitUTF8Identifier to true does not cause the GetBytes method to prefix the BOM at the beginning of the byte array, nor does it cause the GetByteCount method to include the number of bytes in the BOM in the byte count.

    UTF8Encoding(Boolean, Boolean)

    The encoderShouldEmitUTF8Identifier parameter controls the operation of the GetPreamble method. If true, the method returns a byte array containing the Unicode byte order mark (BOM) in UTF-8 format. If false, it returns a zero-length byte array. However, setting encoderShouldEmitUTF8Identifier to true does not cause the GetBytes method to prefix the BOM at the beginning of the byte array, nor does it cause the GetByteCount method to include the number of bytes in the BOM in the byte count.

    If throwOnInvalidBytes is true, a method that detects an invalid byte sequence throws an System.ArgumentException exception. Otherwise, the method does not throw an exception, and the invalid sequence is ignored.

     Caution

    For security reasons, you should enable error detection by calling a constructor that includes a throwOnInvalidBytes parameter and setting that parameter to true.

    Encoding.UTF8 Property

    [__DynamicallyInvokable]
            public static Encoding UTF8
            {
                [__DynamicallyInvokable]
                get
                {
                    if (Encoding.utf8Encoding == null)
                    {
                        Encoding.utf8Encoding = new UTF8Encoding(true);
                    }
                    return Encoding.utf8Encoding;
                }
            }
    [__DynamicallyInvokable]
    public static Encoding Unicode
    {
        [__DynamicallyInvokable]
        get
        {
            if (Encoding.unicodeEncoding == null)
            {
                Encoding.unicodeEncoding = new UnicodeEncoding(false, true);
            }
            return Encoding.unicodeEncoding;
        }
    }

    public UnicodeEncoding(bool bigEndian, bool byteOrderMark) : this(bigEndian, byteOrderMark, false)
            {
            }

    public UnicodeEncoding(bool bigEndian, bool byteOrderMark, bool throwOnInvalidBytes){ }

    验证输出是utf8

      [Test]
            public void Test20210521001()
            {
                MemoryStream exportStream = new MemoryStream();
                StreamWriter streamWriter = new StreamWriter(exportStream);
                streamWriter.Write("知乎日报");
                streamWriter.Flush();
                exportStream.Position = 0;
                var buffer = new byte[exportStream.Length];
                exportStream.Read(buffer, 0, buffer.Length);
                streamWriter.Close();
                exportStream.Close();
    
                var newFilePath = @"C:workspaceEdenredLISATroubleshooting20210521001.txt";
                var fs = File.Create(newFilePath);
                fs.Write(buffer, 0, buffer.Length);
                fs.Close();
    
                Console.WriteLine(GetHexString(buffer));
            }
    
            [Test]
            public void Test20210521002()
            {
                var str = "知乎日报";
                //PrintHexString(Encoding.ASCII, str);  //ascii本身不支持中文的,所以打印出来的是错误的
                PrintHexString(Encoding.UTF8, str);
                PrintHexString(Encoding.BigEndianUnicode, str);
                PrintHexString(Encoding.GetEncoding(936), str);
                PrintHexString(Encoding.GetEncoding(54936), str);
            }
    
            private void PrintHexString(Encoding encoding, string str)
            {
                var array = encoding.GetBytes(str);
                var hexString = GetHexString(array);
                Console.WriteLine($"{str} encoded in {encoding.WebName}: {hexString}");
            }
            private string GetHexString(byte[] array)
            {
                var list = array.Select(x => x.ToString("X2"));
                var str = string.Join(" ", list);
                return str;
            }
  • 相关阅读:
    【C#】C#获取文件夹下的所有文件
    6 云计算系列之Nova安装与配置
    5 云计算系列之glance镜像服务安装
    4 云计算系列之Openstack简介与keystone安装
    3大数据挖掘系列之文本相似度匹配
    6 Django系列之关于models的sql语句日常用法总结
    2 python大数据挖掘系列之淘宝商城数据预处理实战
    5 Django系列之通过list_display展示多对多与外键内容在admin-web界面下
    1 python大数据挖掘系列之基础知识入门
    4 django系列之HTML通过form标签来同时提交表单内容与上传文件
  • 原文地址:https://www.cnblogs.com/chucklu/p/14641645.html
Copyright © 2020-2023  润新知