网站地图    收藏   

主页 > 入门引导 > 网站问答 >

如何显示一个文本文件?_编程10000问_

来源:自学PHP网    时间:2015-02-03 17:41 作者: 阅读:

[导读] 如何显示一个文本文件?...

NEWSZW_HZH_BEGIN-->

 WriteStrING

    WriteLineStrING

    WriteBlankLinesLINES

 

    html

    head

    http-equiv="Content-Type" content="text/html;

    charset=gb2312"

    title〉春风精彩之文本文件显示〈/title

    /head

 

   〈body

    <% LANGUAGE = VBScript %>

    <%

Const ForReading = 1, ForWriting = 2, ForAppending = 3

' 参数为可选,决定输入/输出模式:①ForReading=1只读;②ForWriting=2 可读写;③ForAppending=3追加.

Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0

  ' 参数为可选,指出以何种格式打开文件:①忽略此参数,以 ASCII格式打开文件;②TristateUseDefault=-2 以系统默认格式打开文件;③TristateTrue=-1 Unicode 格式打开文件;④TristateFalse=0 ASCII 格式打开文件,当然我们也可用OpenTextFile方法打开文件.

      

    Dim filename

    filename = "test.txt"

      ' 缺省路径c:\win.

 

    Set fs = CreateObject("Scripting.FileSystemObject")

    Set f = fs.GetFile(filename)

    Set readf = f.OpenAsTextStream(ForReading,TristateFalse)

 

    s = readf.ReadLine

    Do While readf.AtEndOfLine <> True

        s = readf.ReadLine

        Response.write s & ""

            ' 逐行读文件并写屏.

    Loop

    readf.close

    %>

    </body></html>

NEWSZW_HZH_END-->

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论