Chinaunix首页 | 论坛 | 博客
  • 博客访问: 595156
  • 博文数量: 190
  • 博客积分: 10937
  • 博客等级: 上将
  • 技术积分: 2205
  • 用 户 组: 普通用户
  • 注册时间: 2009-04-07 11:28
文章分类

全部博文(190)

文章存档

2012年(1)

2011年(27)

2010年(20)

2009年(142)

我的朋友

分类:

2010-06-19 09:59:57



usingMozilla.NUniversalCharDet;

publicstaticstringDetectEncoding_Bytes(byte[]DetectBuff)
{
 intnDetLen=0;
 UniversalDetectorDet=newUniversalDetector(null);
 //while(!Det.IsDone())
 {
  Det.HandleData(DetectBuff,0,DetectBuff.Length);
 }
 Det.DataEnd();
 if(Det.GetDetectedCharset()!=null)
 {
  returnDet.GetDetectedCharset();
 }
 return"utf-8";
}

阅读(1785) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~