ASP中生成文本文件的两种方式

ASP里两种常用的生成文件的方式是:利用ADODB.Stream生成文件和利用Scripting.FileSystemObject生成文件

1、Scripting.FileSystemObject生成文件方法: 
复制代码 代码如下:
<% 
Set fso = CreateObject("Scripting.FileSystemObject") 
File=Server.MapPath("要生成文件路径和文件名.htm") 
Set txt=fso.OpenTextFile(File,8,True)  
data1="文件内容"用WriteLine方法生成文件 
txt.WriteLine data1 
data2="文件内容"'用Write方法生成文件 
txt.Write data2 
txt.Close 
txt.fso 
%>


2、ADODB.Stream生成文件方法:
复制代码 代码如下:
<% 
Dim objAdoStream 
Set objAdoStream = Server.createObject("ADODB.Stream") 
objAdoStream.Type = 1 
objAdoStream.Open() 
objAdoStream.Write("文件内容") 
objAdoStream.SaveToFile 要生成文件路径和文件名.htm,2 
objAdoStream.Close() 
%>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/3329.html