ASP ReadAll 方法
ASP ReadAll 方法用于从文本文件中读取所有内容。它是返回结果字符串的 TextStream 对象的预定义方法。
注意:此方法不适合大文件,因为它会浪费内存资源。
句法:
TextStreamObject.ReadAll
示例代码:下面的代码说明了 ASP ReadAll 方法。
ASP
<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("d:\GFG.txt")
f.write("Hello GeeksForGeeks. A computer science portal for geeks")
f.close
set t=fs.OpenTextFile("d:\GFG.txt",1,false)
x=t.ReadAll
t.close
Response.Write("The entire content in the file is: " & x)
%>
输出:
The entire content in the files is : Hello GeeksForGeeks A computer science portal for geeks.