ASP ReadAll 方法

asp readall 方法

textstream 对象参考手册 完整的 textstream 对象参考手册

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

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

语法

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)
%>

输出:

the text in the file is: hello world!

textstream 对象参考手册 完整的 textstream 对象参考手册
相关文章