C#和VB.NET检测文件编码的一个库

前端之家收集整理的这篇文章主要介绍了C#和VB.NET检测文件编码的一个库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

https://www.nuget.org/packages/SimpleHelpers.FileEncoding/

安装方式:

111.png (上传于2018-06-06 00:36:52)
111.png

-------------------------------- 作者在 2018-06-06 09:40:40 补充以下内容 --------------------------------

示例:

public static void Main(String[] args)
{
    string filename = args[0];
    using (FileStream fs = File.OpenRead(filename)) {
        Ude.CharsetDetector cdet = new Ude.CharsetDetector();
        cdet.Feed(fs);
        cdet.DataEnd();
        if (cdet.Charset != null) {
            Console.WriteLine("Charset: {0},confidence: {1}",cdet.Charset,cdet.Confidence);
        } else {
            Console.WriteLine("Detection Failed.");
        }
    }
}
原文链接:https://www.f2er.com/windows/566672.html

猜你在找的Windows相关文章