首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

判断资料编码

2012-07-02 
判断文件编码断文件编码import java.io.Fileimport java.nio.charset.Charsetimport info.monitorenter.

判断文件编码
断文件编码

import java.io.File;import java.nio.charset.Charset;import info.monitorenter.cpdetector.io.CodepageDetectorProxy;import info.monitorenter.cpdetector.io.JChardetFacade;public class Test{    public static void main(String[] args)    {        CodepageDetectorProxy detector = CodepageDetectorProxy.getInstance();        detector.add(JChardetFacade.getInstance());                Charset charset = null;                File f = new File("C:/1.txt");                  try         {               charset = detector.detectCodepage(f.toURL());           }         catch (Exception e)         {            e.printStackTrace();        }           if(charset!=null)        {               System.out.println(f.getName()+"编码是:"+charset.name());           }        else              System.out.println(f.getName()+"未知");      }    }

热点排行