当前位置:  技术问答>java相关

怎么样循环读出文本文件里的所有数据?

    来源: 互联网  发布时间:2015-06-12

    本文导语:  File file = new File(request.getRealPath("test")+"/byo.txt"); if(file.exists()) { FileReader fr = new FileReader(file); BufferedReader br = new BufferedReader(fr) ; String str=""; while(!br.Next()) { str=br.readLine(); out.println(str); } } 这里哪儿不对呀?谢谢...

File file = new File(request.getRealPath("test")+"/byo.txt");
if(file.exists())
{
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr) ;
String str="";
while(!br.Next())
{
str=br.readLine();
out.println(str);
}
}
这里哪儿不对呀?谢谢

|
楼上的有点问题,这样:
File file = new File(request.getRealPath("test")+"/byo.txt");
if(file.exists())
{
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
String str=br.readLine();
while(str!=null)
{
out.println(str+"
");
str=br.readLine();
}
}

|
/**
* Returns the content of the file in a String.
* If an error occurs, like if the file does not exists, null is returned.
*/
public String getContent() {
String content = "";
File file = new File(fileName);
if (!file.exists()) {
setErrorMessage("Error: The file '" + fileName + "' does not exists.");
return null;

else if (file != null) {
try {
// Create an BufferedReader so we can read a line at the time.
BufferedReader reader = new BufferedReader(new FileReader(file));
String inLine = reader.readLine();
while (inLine != null) {
if (inLine.length() + 1 > columns)
columns = inLine.length() + 1;
content += (inLine + System.getProperty("line.separator"));
inLine = reader.readLine();
rowCount++;
}
return content;
}
catch (IOException e) {
setErrorMessage("Error reading the file: " + e.getMessage());
return null;
}
}
else {
setErrorMessage("Unknown error!");
return null;
     }
  }
}

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • for循环最大支持多大的循环次数?这什么我执行10000次的时候发生了错误?
  • 请教这种循环的执行过程 iis7站长之家
  • 请教一个基础问题while循环怎么从10到0来循环10次?
  • json数据的列循环 JS循环遍历JSON数据
  • UX下如何判断线程是否还在运行?UX下如何在for循环进入死循环时,强行停止它(不再for中处理)?
  • for循环中为什么在第8次循环会出现“memory fault coredumpe”的错误??
  • MySQL循环语句之while循环测试
  • shell while循环内的变量在循环外部值不能传递
  • ”整型变量j说明为volatile,这样就阻止了优化程序除去循环语句“ 这么理解这句话,为什么会除去循环语句?
  • 解析在内部循环中Continue外部循环的使用详解
  • 请教这种循环的执行过程
  • jquery进行数组遍历如何跳出当前的each循环
  • c#入门之循环语句使用详解(for循环、do/while)
  • jquery退出each循环的写法
  • 请教:LINUX用不用循环机制?与WINDOWS有什么本质区别?
  • java中怎样退出 for 循环?
  • Jquery each方法跳出循环,并获取返回值(实例讲解)
  • “死锁就是循环等待”这句话不对吗?谢谢!
  • Python跳出循环语句continue与break的区别
  • break在java里是跳出所有循环吗?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3