최신 웹 개발 튜토리얼
 

ASP ReadAll 메쏘드 방법


<완전한있는 TextStream 개체 참조

ReadAll 메쏘드 방법은 전체있는 TextStream 파일을 읽고 문자열로 결과를 반환합니다.

Note: 이 방법은 큰 파일 (이 메모리 리소스를 낭비)에 적합하지 않습니다.

통사론

TextStreamObject.ReadAll

<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt")
f.write("Hello World!")
f.close

set t=fs.OpenTextFile("c:\test.txt",1,false)
x=t.ReadAll
t.close
Response.Write("The text in the file is: " & x)
%>

Output:

The text in the file is: Hello World!

<완전한있는 TextStream 개체 참조