主頁(yè) > 知識(shí)庫(kù) > 用ASP應(yīng)用程序?qū)崿F(xiàn)自己的UrlDeCode

用ASP應(yīng)用程序?qū)崿F(xiàn)自己的UrlDeCode

熱門(mén)標(biāo)簽:怎么在地圖標(biāo)注自己 縣域地圖標(biāo)注打印店 個(gè)人可以辦理400電話么 修改地圖標(biāo)注 鳳臺(tái)百度地圖標(biāo)注店 外呼系統(tǒng)API接口 金昌電話機(jī)器人價(jià)格 武夷山旅游地圖標(biāo)注 萊西電子地圖標(biāo)注
即:  
  如果有空格就用%20代替,如果有其它字符就用%ASCII代替,如果有漢字等四個(gè)字節(jié)的字符,就用兩個(gè)%ASCII來(lái)代替。不過(guò)有時(shí)候我們也需要將經(jīng)過(guò)這種編碼的字符串進(jìn)行解碼,但asp并沒(méi)有提供相關(guān)的函數(shù),這給我們處理問(wèn)題帶來(lái)了一定的麻煩。其實(shí)我們只要知道了編碼規(guī)則后,就可以用asp代碼來(lái)實(shí)現(xiàn)我們自己的URlDecode函數(shù)了。
具體實(shí)現(xiàn)如下:  
復(fù)制代碼 代碼如下:

function urldecode(encodestr) 
newstr="" 
havechar=false 
lastchar="" 
for i=1 to len(encodestr) 
char_c=mid(encodestr,i,1) 
if char_c="+" then 
newstr=newstr  " " 
elseif char_c="%" then 
next_1_c=mid(encodestr,i+1,2) 
next_1_num=cint("H"  next_1_c) 

if havechar then 
havechar=false 
newstr=newstr  chr(cint("H"  lastchar  next_1_c)) 
else 
if abs(next_1_num)=127 then 
newstr=newstr  chr(next_1_num) 
else 
havechar=true 
lastchar=next_1_c 
end if 
end if 
i=i+2 
else 
newstr=newstr  char_c 
end if
next 
urldecode=newstr 
end function

下面為大家提供一個(gè)更成熟的函數(shù):
復(fù)制代碼 代碼如下:

'================================================
'函數(shù)名:URLDecode
'作 用:URL解碼
'================================================
Function URLDecode(ByVal urlcode)
Dim start,final,length,char,i,butf8,pass
Dim leftstr,rightstr,finalstr
Dim b0,b1,bx,blength,position,u,utf8
On Error Resume Next

b0 = Array(192,224,240,248,252,254)
urlcode = Replace(urlcode,"+"," ")
pass = 0
utf8 = -1

length = Len(urlcode) : start = InStr(urlcode,"%") : final = InStrRev(urlcode,"%")
If start = 0 Or length 3 Then URLDecode = urlcode : Exit Function
leftstr = Left(urlcode,start - 1) : rightstr = Right(urlcode,length - 2 - final)

For i = start To final
char = Mid(urlcode,i,1)
If char = "%" Then
bx = URLDecode_Hex(Mid(urlcode,i + 1,2))
If bx > 31 And bx 128 Then
i = i + 2
finalstr = finalstr ChrW(bx)
ElseIf bx > 127 Then
i = i + 2
If utf8 0 Then
butf8 = 1 : blength = -1 : b1 = bx
For position = 4 To 0 Step -1
If b1 >= b0(position) And b1 b0(position + 1) Then
blength = position
Exit For
End If
Next
If blength > -1 Then
For position = 0 To blength
b1 = URLDecode_Hex(Mid(urlcode,i + position * 3 + 2,2))
If b1 128 Or b1 > 191 Then butf8 = 0 : Exit For
Next
Else
butf8 = 0
End If
If butf8 = 1 And blength = 0 Then butf8 = -2
If butf8 > -1 And utf8 = -2 Then i = start - 1 : finalstr = "" : pass = 1
utf8 = butf8
End If
If pass = 0 Then
If utf8 = 1 Then
b1 = bx : u = 0 : blength = -1
For position = 4 To 0 Step -1
If b1 >= b0(position) And b1 b0(position + 1) Then
blength = position
b1 = (b1 xOr b0(position)) * 64 ^ (position + 1)
Exit For
End If
Next
If blength > -1 Then
For position = 0 To blength
bx = URLDecode_Hex(Mid(urlcode,i + 2,2)) : i = i + 3
If bx 128 Or bx > 191 Then u = 0 : Exit For
u = u + (bx And 63) * 64 ^ (blength - position)
Next
If u > 0 Then finalstr = finalstr ChrW(b1 + u)
End If
Else
b1 = bx * h100 : u = 0
bx = URLDecode_Hex(Mid(urlcode,i + 2,2))
If bx > 0 Then
u = b1 + bx
i = i + 3
Else
If Left(urlcode,1) = "%" Then
u = b1 + Asc(Mid(urlcode,i + 3,1))
i = i + 2
Else
u = b1 + Asc(Mid(urlcode,i + 1,1))
i = i + 1
End If
End If
finalstr = finalstr Chr(u)
End If
Else
pass = 0
End If
End If
Else
finalstr = finalstr char
End If
Next
URLDecode = leftstr finalstr rightstr
End Function

Function URLDecode_Hex(ByVal h)
On Error Resume Next
h = "h" Trim(h) : URLDecode_Hex = -1
If Len(h) > 4 Then Exit Function
If isNumeric(h) Then URLDecode_Hex = cInt(h)
End Function
您可能感興趣的文章:
  • ASP中實(shí)現(xiàn)的URLEncode、URLDecode自定義函數(shù)
  • ASP的URLDecode函數(shù)URLEncode解碼函數(shù)
  • ASP中只有UrlEncode,沒(méi)有Urldecode問(wèn)題的解決方法?

標(biāo)簽:清遠(yuǎn) 上海 楚雄 邢臺(tái) 南京 涼山 赤峰 通遼

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用ASP應(yīng)用程序?qū)崿F(xiàn)自己的UrlDeCode》,本文關(guān)鍵詞  用,ASP,應(yīng)用程序,實(shí)現(xiàn),自己的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《用ASP應(yīng)用程序?qū)崿F(xiàn)自己的UrlDeCode》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于用ASP應(yīng)用程序?qū)崿F(xiàn)自己的UrlDeCode的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章