VBS 에서 강아지 영상 에서 ED2K 연결 실현 코드 추출
GetEd2kLink.VBS 코드 는 다음 과 같 습 니 다.GetED2KLink 을 직접 다운로드 할 수 있 습 니 다.
On Error Resume Next
SourceURL = inputbox( _
vbcrlf & " 。 " & vbcrlf & _
vbcrlf & " , :ed2k.txt" & vbcrlf & _
vbcrlf & " :" & vbcrlf, "Get ED2K Link", "http://" _
)
IF SourceURL = "" or SourceURL = "http://" Then
MsgBox " !", 48, "Get ED2K Link"
Wscript.Quit(1)
End If
'
Set ObjHttp = CreateObject("Microsoft.XMLHTTP")
ObjHttp.Open "Get", SourceURL, false
ObjHttp.Send
SourceCode = Split(CodeConver(ObjHttp.responsebody), chr(10))
'
For i = 0 To UBound(SourceCode)-LBound(SourceCode)
MatchLine = InStr(SourceCode(i), "ed2k://|file|")
If MatchLine <> 0 Then
ArrPub = Split(Replace(SourceCode(i), "},{", "}#{"), "#")
For K = 0 To UBound(ArrPub)-LBound(ArrPub)
Ed2KLink = Ed2KLink & Split(Split(ArrPub(K), ",")(5), """")(3) & vbcrlf
Next
End If
Next
'
If Ed2KLink = "" Then
MsgBox " ed2k !", 48, "Get ED2K Link"
Wscript.Quit(2)
Else
Set ObjFSO = CreateObject("Scripting.FileSystemObject")
ObjFSO.OpenTextFile("ed2k.txt", 8,true).Write(Ed2KLink)
End If
MsgBox " !", 64, "Get ED2K Link"
Wscript.Quit(0)
Function CodeConver(vIn)
strReturn = ""
For i = 1 To LenB(vIn)
ThisCharCode = AscB(MidB(vIn,i,1))
If ThisCharCode < &H80 Then
strReturn = strReturn & Chr(ThisCharCode)
Else
NextCharCode = AscB(MidB(vIn,i+1,1))
strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
i = i + 1
End If
Next
CodeConver = strReturn
End Function
테스트 만 가능 합 니 다.만약 어떤 버그 를 발견 한다 면 저 에 게 반영 해 주 십시오!!