ASP AtEndOfStream ÊôÐÔ

¶¨ÒåºÍÓ÷¨

Èç¹ûÎļþÖ¸ÕëλÓÚ TextStream ÎļþµÄĩ⣬AtEndOfStream ÊôÐÔ·µ»Ø True £¬·ñÔò·µ»Ø False ¡£

×¢ÊÍ£º´ËÊôÐÔ½ö¹¤×÷ÓÚÒÔÖ»¶Á·½Ê½´ò¿ªµÄ TextStream ¶ÔÏó¡£

Óï·¨£º

TextStreamObject.AtEndOfStream

ʵÀý

<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject") 
set f=fs.CreateTextFile("c:\test.txt")
f.write("Hello World!")
f.close

set t=fs.OpenTextFile("c:\test.txt",1,false)
do while t.AtEndOfStream<>true
  x=t.Read(1)
loop
t.close 
Response.Write("The last character is: " & x)
%>

Êä³ö£º

The last character in the text file is: !

VUE