utf-8에 서명 코드를 가지고 있는지 여부입니다.

1847 단어 utf-8
 Encoding utf8 = new UTF8Encoding(true);

매개변수는 서명 여부를 나타냅니다.
그러나 이 서명이 WriteAllBytes에서 무효인지 여부는 영원히 서명이 없습니다.
그러나 WriteAllText에서는 유효합니다.
 Encoding utf8 = new UTF8Encoding(true);

        ////utf8.s = "65001";



        //var utf8 = System.Text.Encoding.GetEncoding(65001);

        var bys = utf8.GetBytes(" " + DateTime.Now.ToString());

        System.IO.File.WriteAllBytes(Server.MapPath("~/") + "b.html", bys);



        File.WriteAllText(Server.MapPath("~/") + "a.html", Encoding.UTF8.GetString(bys) + ", ", new UTF8Encoding(true));

좋은 웹페이지 즐겨찾기