ASP TextStream 对象
asp textstream 对象
textstream 对象用于访问文本文件的内容。
尝试一下 - 实例
1、读取文本文件
2、读取文本文件中的一个部分
本例演示如何仅仅读取一个文本流文件的部分内容。
3、读取文本文件中的一行
本例演示如何从一个文本流文件中读取一行内容。
4、读取文本文件的所有行
本例演示如何从文本流文件中读取所有的行。
5、略过文本文件中的一部分
本例演示如何在读取文本流文件时跳过指定的字符数。
6、略过文本文件中的一行
本例演示如何在读取文本流文件时跳过一行。
7、返回行数
本例演示如何返回在文本流文件中的当前行号。
8、取得列数
本例演示如何取得在文件中当前字符的列号。
textstream 对象
textstream 对象用于访问文本文件的内容。
下面的代码会创建一个文本文件 (c:\test.txt),然后向此文件写一些文本(变量 f 是 textstream 对象的一个实例):
<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt",true)
f.writeline("hello world!")
f.close
set f=nothing
set fs=nothing
%>
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt",true)
f.writeline("hello world!")
f.close
set f=nothing
set fs=nothing
%>
如需创建 textstream 对象的一个实例,您可以使用 filesystemobject 对象的 createtextfile 方法或者 opentextfile 方法,也可以使用 file 对象的 openastextstream 方法。
textstream 对象的属性和方法描述如下:
属性
属性 | 描述 |
---|---|
atendofline | 如果文件指针正好位于 textstream 文件中行尾标记的前面,则该属性值返回 true;否则返回 false。 |
atendofstream | 如果文件指针在 textstream 文件末尾,则该属性值返回 true;否则返回 false。 |
column | 返回 textstream 文件输入流中的当前字符位置的列号。 |
line | 返回 textstream 文件中的当前行号。 |
方法
方法 | 描述 |
---|---|
close | 关闭一个打开的 textstream 文件。 |
read | 从一个 textstream 文件中读取指定数量的字符并返回结果。 |
readall | 读取整个 textstream 文件并返回结果。 |
readline | 从一个 textstream 文件读取一整行(到换行符但不包括换行符)并返回结果。 |
skip | 当读取一个 textstream 文件时跳过指定数量的字符。 |
skipline | 当读取一个 textstream 文件时跳过下一行。 |
write | 写入指定的文本到一个 textstream 文件中。 |
writeline | 写入指定的文本和换行符到一个 textstream 文件中。 |
writeblanklines | 写入指定数量的换行符到一个 textstream 文件中。 |