ASP code to detect file encoding

Source: Internet
Author: User
Tags format definition

ANSI local coding, are defined by the countries themselves, there is no fixed file header format, in the mainland Chinese operating system, is readable gb2312, in other language system, is garbled, so this part does not need to distinguish in detail.

ANSI: no format definition
Unicode: The first two bytes are Fffe
Unicode big endian: first two bytes for Feff
Utf-8: first two bytes for EFBB

function Checkcode (path)
Set Objstream=server.createobject ("ADODB.stream")
Objstream.type=1
Objstream.mode=3
objStream.Open
Objstream.position=0
objStream.LoadFromFile Path
Bintou=objstream.read (2)
If ASCB (MidB (bintou,1,1)) =&hef and ASCB (MidB (bintou,2,1)) =&HBB Then
Checkcoder= "Utf-8"
ElseIf ASCB (MidB (bintou,1,1)) =&hff and ASCB (MidB (bintou,2,1)) =&hfe Then
Checkcode= "Unicode"
Else
Checkcode= "gb2312"
End If
objStream.Close
Set objstream=nothing
End Function

Principle: Using the Stream object to read the first two bytes of the file, analysis and determination of UTF-8, Unicode, ANSI (Simplified Chinese operating system, that is, gb2312) encoding.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.