©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
JScript | 语言参考 |
方便对文件的顺序访问。
TextStream.{property | method( )}
property 和 method 参数可以是与 TextStream 对象相连的任何属性和方法。请注意在实际使用时,TextStream 被从 FileSystemObject 返回的代表 TextStream 对象的变量占位符代替。
在下面的代码中,a 是由 FileSystemObject 的 CreateTextFile 方法返回的 TextStream 对象:
var fso = new ActiveXObject("Scripting.FileSystemObject"); var a = fso.CreateTextFile("c:\\testfile.txt", true); a.WriteLine("
这是一个测试。");
a.Close();
WriteLine 和 Close 是 TextStream 对象的两个方法。
Close 方法 | Read 方法 | ReadAll 方法 | ReadLine 方法 | Skip 方法 | SkipLine 方法 | Write 方法 | WriteBlankLines 方法 | WriteLine 方法
AtEndOfLine 属性 | AtEndOfStream 属性 | Column 属性 | Line 属性
Dictionary 对象 | FileSystemObject 对象