> ASP Read 方法

ASP Read 方法

定义和用法

Read 方法从 TextStream 文件中读取指定数量的字符,并以字符串返回结果。

语法:

TextStreamObject.Read(numchar)
参数 描述
numchar 必需的。需从文件中读取字符的数目。

实例


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

set t=fs.OpenTextFile("c:	est.txt",1,false)
x=t.Read(5)
t.close 
Response.Write("The first five characters are: " & x)
%>

输出:

The first five characters are: Hello
参考手册

W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号