在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
dim input(30) ' 定义一个数组,大小可随时更改.这里为了显示方便. file_path=Server.Mappath("index.html") Set fs=Server.CreateObject("Scripting.FileSystemObject") Set file_open=fs.OpenTextFile(file_path) n=0 Do While Not file_open.AtEndOfStream n=n+1 fileline=file_open.readline input(i)=fileline ' 将文件内容读入input数组. Loop file_open.close Set fs=Nothing 另外,对于二进制数据,我们也可以用Read()来读取,如: file_open.Read(200) 就是读取file_open中的200个数据。 |
请发表评论