jsp文件操作之读取篇
时间:2007-10-22 来源:不详 作者:林子
}
}
//得到文件路径
public String getPath() {
return path;
}
//关闭文件
public void fileClose() throws IOException
{
file.close();
}
//读取下一行记录,若没有则返回-1
public int nextRecord()
{
int returnInt = -1;
try
{
currentRecord = file.readLine();
}
catch (IOException e)
{
System.out.println("readLine problem, terminating.");
}
if (currentRecord == null)
returnInt = -1;
else
{
token = new StringTokenizer(currentRecord);
returnInt = token.countTokens();
}
return returnInt;
}
//以字符串的形式返回整个记录
public String returnRecord()
{
return currentRecord; 织梦内容管理系统
}
}
上一篇:用JavaScrpt实现文件夹轻松加密 下一篇:jsp文件操作之追加篇
文章评论
共有位Admini5网友发表了评论 查看完整内容