当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP ReadAll用法及代码示例


ASP ReadAll方法用于从文本文件读取所有内容。它是TextStream对象的预定义方法,该方法返回结果字符串。

注意:此方法不适用于大文件,因为它浪费了内存资源。

用法:

TextStreamObject.ReadAll 

示例代码:下面的代码说明了ASP ReadAll方法。

ASP

<% 
dim fs,f,t,x 
set fs=Server.CreateObject("Scripting.FileSystemObject") 
set f=fs.CreateTextFile("d:\GFG.txt") 
f.write("Hello GeeksForGeeks. A computer science portal for geeks") 
f.close 
  
set t=fs.OpenTextFile("d:\GFG.txt",1,false) 
x=t.ReadAll 
t.close 
Response.Write("The entire content in the file is:" & x) 
%>

输出:

The entire content in the files is:Hello GeeksForGeeks A computer science portal for geeks. 

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP ReadAll Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。