ASP ReadAll 方法

定义和用法

ReadAll 方法可读取整个 TextStream 文件,并以字符串返回结果。

注释:此方法不适合大型文件(会浪费内存资源)。

语法:

  1. TextStreamObject.ReadAll

实例

  1. <%
  2. dim fs,f,t,x
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. set f=fs.CreateTextFile("c:\test.txt")
  5. f.write("Hello World!")
  6. f.close
  7.  
  8. set t=fs.OpenTextFile("c:\test.txt",1,false)
  9. x=t.ReadAll
  10. t.close
  11. Response.Write("The text in the file is: " & x)
  12. %>

输出:

  1. The text in the file is: Hello World!