ASP OpenAsTextStream 方法

asp openastextstream 方法

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

openastextstream 方法打开指定的文件,并返回一个供访问此文件的 textstream 对象。

语法

fileobject.openastextstream(mode,format)

参数 描述
mode 可选的。如何打开文件(输入/输出模式)。
  • 1 = forreading - 以只读模式打开文件。不能对此文件进行写操作。
  • 2 = forwriting - 以可读写模式打开文件。如果已存在同名的文件,则覆盖旧的文件。
  • 8 = forappending - 打开文件并在文件末尾进行写操作。
format 可选的。以何种格式打开文件。忽略此参数,则文件以 ascii 格式打开。
  • 0 = tristatefalse - 默认。以 ascii 格式打开文件。
  • -1 = tristatetrue - 以 unicode 格式打开文件。
  • -2 = tristateusedefault - 使用系统默认格式打开文件。

实例

<%
dim fs,f,ts
set fs=server.createobject("scripting.filesystemobject")
set f=fs.getfile("c:\test.txt")
set ts=f.openastextstream(forwriting)
ts.write("hello world!")
ts.close

set ts=f.openastextstream(forreading)
response.write(ts.readall)
ts.close
set ts=nothing
set f=nothing
set fs=nothing
%>

输出:

hello world!

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