readfile_in_asp
1.0.0
ASP で VBScript を使用してサーバー上のテキスト ファイルを読み取る方法
どのプログラミング言語でも最も重要なタスクの 1 つは、ファイルの読み取りと書き込みの機能です。 ASP に含まれる手順は、他の多くの言語と変わりません。
ASP でのファイル I/O は、 FileSystemObject
コンポーネントを使用して実行できます。テキスト ファイルを開くときは、単純にテキスト ストリームとして開きます。ファイルの内容にアクセスするために使用するのはこのテキスト ストリームです。
FileSystemObject を使用すると、すべてのファイルとフォルダーの処理操作を実行できます。テキスト ストリームとして開くことができるファイルを返すことも、テキスト ストリーム オブジェクトを直接返すこともできます。
以下に 2 つの異なる方法を紹介します。最初のメソッドはファイル オブジェクトを取得し、それを使用してテキスト ストリームを開きます。2 番目のメソッドは、 FileSystemObject
から直接テキスト ストリームを開きます。
"
' Open the file
Dim TextStream
Set TextStream = file.OpenAsTextStream(ForReading, TristateUseDefault)
' Read the file line by line
Do While Not TextStream.AtEndOfStream
Dim Line
Line = TextStream.readline
' Do something with "Line"
Line = Line & vbCRLF
Response.write Line
Loop
Response.Write "
<% Option Explicit
Const Filename = " /readme.txt " ' file to read
Const ForReading = 1 , ForWriting = 2 , ForAppending = 3
Const TristateUseDefault = - 2 , TristateTrue = - 1 , TristateFalse = 0
' Create a filesystem object
Dim FSO
set FSO = server . createObject ( " Scripting.FileSystemObject " )
' Map the logical path to the physical system path
Dim Filepath
Filepath = Server . MapPath (Filename)
if FSO.FileExists(Filepath) Then
' Get a handle to the file
Dim file
set file = FSO.GetFile(Filepath)
' Get some info about the file
Dim FileSize
FileSize = file.Size
Response . Write " File: "
& Filename & " (size " & FileSize & _
" bytes)
"
Response . Write " "
' Open the file
Dim TextStream
Set TextStream = file.OpenAsTextStream(ForReading, TristateUseDefault)
' Read the file line by line
Do While Not TextStream.AtEndOfStream
Dim Line
Line = TextStream.readline
' Do something with "Line"
Line = Line & vbCRLF
Response . write Line
Loop
Response . Write "
<% Option Explicit
Const Filename = " /readme.txt " ' file to read
Const ForReading = 1 , ForWriting = 2 , ForAppending = 3
Const TristateUseDefault = - 2 , TristateTrue = - 1 , TristateFalse = 0
' Create a filesystem object
Dim FSO
set FSO = server . createObject ( " Scripting.FileSystemObject " )
' Map the logical path to the physical system path
Dim Filepath
Filepath = Server . MapPath (Filename)
if FSO.FileExists(Filepath) Then
Set TextStream = FSO.OpenTextFile(Filepath, ForReading, False , TristateUseDefault)
' Read file in one hit
Dim Contents
Contents = TextStream.ReadAll
Response . write " "
& Contents & "