您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

filesystemobject组件的用法示例

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 11:05 点击:

CreateLyrics
目的:
在文件夹中创建两个文本文件。
示范下面的内容
  - FileSystemObject.CreateTextFile
  - TextStream.WriteLine
  - TextStream.Write
  - TextStream.WriteBlankLines
  - TextStream.Close


Sub CreateLyrics(Folder)

   Dim TextStream
   
   Set TextStream = Folder.CreateTextFile("OctopusGarden.txt")
   
   TextStream.Write("Octopus Garden ") 请注意,该语句不添加换行到文件中。
   TextStream.WriteLine("(by Ringo Starr)")
   TextStream.WriteBlankLines(1)
   TextStream.WriteLine("Id like to be under the sea in an octopus garden in the shade,")
   TextStream.WriteLine("Hed let us in, knows where weve been -- in his octopus garden in the shade.")
   TextStream.WriteBlankLines(2)
   
   TextStream.Close

   Set TextStream = Folder.CreateTextFile("BathroomWindow.txt")
   TextStream.WriteLine("She Came In Through The Bathroom Window (by Lennon/McCartney)")
   TextStream.WriteLine("")
   TextStream.WriteLine("She came in through the bathroom window protected by a silver spoon")
   TextStream.WriteLine("But now she sucks her thumb and wanders by the banks of her own lagoon")
   TextStream.WriteBlankLines(2)
   TextStream.Close

End Sub

GetLyrics
目的:
显示 lyrics 文件的内容。
示范下面的内容
  - FileSystemObject.OpenTextFile
  - FileSystemObject.GetFile
  - TextStream.ReadAll
  - TextStream.Close
  - File.OpenAsTextStream
  - TextStream.AtEndOfStream
  - TextStream.ReadLine


Function GetLyrics(FSO)

   Dim TextStream
   Dim S
   Dim File

    有多种方法可用来打开一个文本文件,和多种方法来从文件读取数据。
    这儿用了两种方法来打开文件和读取文件:

   Set TextStream = FSO.OpenTextFile(TestFilePath & "BeatlesOctopusGarden.txt", OpenFileForReading)
   
   S = TextStream.ReadAll & NewLine & NewLine
   TextStream.Close

   Set File = FSO.GetFile(TestFilePath & "BeatlesBathroomWindow.txt")
   Set TextStream = File.OpenAsTextStream(OpenFileForReading)
   Do    While Not TextStream.AtEndOfStream
      S = S & TextStream.ReadLine & NewLine
   Loop
   TextStream.Close

   GetLyrics = S
   
End Function

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • WAP常见问题问答大全(四)
      • ASP开发必备:WEB打印代码大全
      • ASP调用系统ping命令
      • asp缓存技术
      • ASP教程:第三篇 ASP基础
      • 用ASP+XML打造留言本(4)
      • 关于ASP Recordset 分页出现负数解决方法及建议
      • 用asp怎样编写文档搜索页面(5)
      • ASP处理多关键词查询实例代码
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1