HTTP Get -- 各キャラクタセットのWebページの読込み ( IXMLHTTPRequest )


  Shift_Jis ページの読み込み




responseText は、euc か utf-8 のページの場合 unicode として変換されますが、Shift_Jis は仕様外の
ようです。ですから、responseBody でいったんバイナリ保存してから、読み込む事になります。

  

Set Stream = CreateObject( "ADODB.Stream" )
Set Fso = CreateObject( "Scripting.FileSystemObject" )

strUrlTarget = "http://hp.vector.co.jp/authors/VA003334/"

Set Http = CreateObject("Msxml2.XMLHTTP.3.0")
Call Http.Open("GET", strUrlTarget, FALSE )	' FALSE は同期処理
Http.Send

Stream.Open
Stream.Type = 1	' バイナリ
Stream.Write Http.responseBody	' Write はバイナリ用
Stream.SaveToFile "Shift_Jis_Page.txt", 2
Stream.Close

Set objHandle = Fso.OpenTextFile( "Shift_Jis_Page.txt", 1 )
For I = 1 to 30
	WScript.Echo objHandle.ReadLine
Next
objHandle.Close
  

  Shift_Jis ページ以外の読み込み




shift_jis 以外では、メモリ上で処理可能です

  

Set Stream = CreateObject( "ADODB.Stream" )

strUrlTarget = "http://euc-jpまたはutf-8ベージのURL"

Set Http = CreateObject("Msxml2.XMLHTTP.3.0")
Call Http.Open("GET", strUrlTarget, FALSE )	' FALSE は同期処理
Http.Send

Stream.Open
Stream.Type = 2	' テキスト
Stream.WriteText Http.responseText	' WriteText はテキスト用

Stream.Position = 0
Stream.LineSeparator = 10	' LF
For I = 1 to 30
	WScript.Echo Stream.ReadText( -2 ) 
Next

Stream.Close
  

  unicode のまま保存

  

Set Stream = CreateObject( "ADODB.Stream" )

strUrlTarget = "http://euc-jpまたはutf-8ベージのURL"

Set Http = CreateObject("Msxml2.XMLHTTP.3.0")
Call Http.Open("GET", strUrlTarget, FALSE )	' FALSE は同期処理
Http.Send

Stream.Open
Stream.Type = 2	' テキスト
Stream.WriteText Http.responseText	' WriteText はテキスト用
Stream.SaveToFile "Save_As_Unicode.txt", 2
Stream.Close
  

  他のキャラクタセットに変えて保存

  

Set Stream = CreateObject( "ADODB.Stream" )

strUrlTarget = "http://euc-jpまたはutf-8ベージのURL"

Set Http = CreateObject("Msxml2.XMLHTTP.3.0")
Call Http.Open("GET", strUrlTarget, FALSE )	' FALSE は同期処理
Http.Send

Stream.Open
Stream.Type = 2	' テキスト

Stream.Charset = "shift_jis"
'Stream.Charset = "euc-jp"
'Stream.Charset = "utf-8"

Stream.WriteText Http.responseText	' WriteText はテキスト用
Stream.SaveToFile "Save_As_Not_Unicode.txt", 2
Stream.Close
  




yahoo  google  MSDN  MSDN(us)  WinFAQ  Win Howto  tohoho  ie_DHTML  vector  wdic  辞書  天気 


[smalltech]
claudebot
24/03/29 01:21:55
InfoBoard Version 1.00 : Language=Perl

1 BatchHelper COMprog CommonSpec Cprog CprogBase CprogSAMPLE CprogSTD CprogSTD2 CprogWinsock Cygwin GameScript HTML HTMLcss InstallShield InstallShieldFunc JScript JScriptSAMPLE Jsfuncs LLINK OldProg OracleGold OracleSilver PRO PRObrowser PROc PROconePOINT PROcontrol PROftpclient PROjscript PROmailer PROperl PROperlCHAT PROphp PROphpLesson PROphpLesson2 PROphpLesson3 PROphpfunction PROphpfunctionArray PROphpfunctionMisc PROphpfunctionString PROsql PROvb PROvbFunction PROvbString PROvbdbmtn PROvbonepoint PROwebapp PROwin1POINT PROwinSYSTEM PROwinYOROZU PROwindows ProjectBoard RealPHP ScriptAPP ScriptMaster VBRealtime Vsfuncs a1root access accreq adsi ajax amazon argus asp aspSample aspVarious aspdotnet aw2kinst cappvariety centura ckeyword classStyle cmaterial cmbin cmdbapp cmenum cmlang cmlistbox cmstd cmstdseed cmtxt cs daz3d db dbCommon dbaccess dnettool dos download flex2 flex3 flex4 framemtn framereq freeWorld freesoft gimp ginpro giodownload google hdml home hta htmlDom ie9svg install java javaSwing javascript jetsql jquery jsp jspTest jspVarious lightbox listasp listmsapi listmsie listmsiis listmsnt listmspatch listmsscript listmsvb listmsvc memo ms msde mysql netbeans oraPlsql oracle oracleWiper oraclehelper orafunc other panoramio pear perl personal pgdojo pgdojo_cal pgdojo_holiday pgdojo_idx pgdojo_ref pgdojo_req php phpVarious phpguide plsql postgres ps r205 realC realwebapp regex rgaki ruby rule sboard sc scprint scquest sdb sdbquest seesaa setup sh_Imagick sh_canvas sh_dotnet sh_google sh_tool sh_web shadowbox shgm shjquery shvbs shweb sjscript skadai skywalker smalltech sperl sqlq src systemdoc tcpip tegaki three toolbox twitter typeface usb useXML vb vbdb vbsfunc vbsguide vbsrc vpc wcsignup webanymind webappgen webclass webparts webtool webwsh win8 winofsql wmi work wp youtube