asp 读取txt 可以从第N行开始读取吗
答案:2 悬赏:10 手机版
解决时间 2021-03-01 00:01
- 提问者网友:刺鸟
- 2021-02-28 14:28
asp 读取txt 可以从第N行开始读取吗
最佳答案
- 五星知识达人网友:空山清雨
- 2021-02-28 15:08
set fs=server.createobject("scripting.filesystemobject")
file=server.mappath("read.txt")
set txt=fs.opentextfile(file,1,true)
if not txt.atendofstream then
line=txt.ReadAll
response.write line & "
"
end if
%>
line=txt.ReadAll'读取文件中的所有数据
line=txt.ReadLine'从文件中读取N个字节的数据
line=txt.Read(N)'从文件中读取一行数据
file=server.mappath("read.txt")
set txt=fs.opentextfile(file,1,true)
if not txt.atendofstream then
line=txt.ReadAll
response.write line & "
"
end if
%>
line=txt.ReadAll'读取文件中的所有数据
line=txt.ReadLine'从文件中读取N个字节的数据
line=txt.Read(N)'从文件中读取一行数据
全部回答
- 1楼网友:从此江山别
- 2021-02-28 15:20
access跟mssql很麻烦。select ...from... where xx not in....
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯