从文本文件中读取的代码不起作用

时间:2013-09-09 14:09:19

标签: java bufferedreader readfile textreader

我是Java的新手,而且一切都是自学成才的。我喜欢使用代码,这只是一个爱好,所以,我没有关于这个主题的正式教育。

我正处于学习从文本文件中读取的地方。我给出的代码不正确。当我硬编码确切的行数时,它可以正常工作,但如果我使用“for”循环来感知行数,它就不起作用。

我已经改变了一点。我现在就在这里:

这是我的主要课程

package textfiles;

import java.io.IOException;

public class FileData {

public static void main(String[] args) throws IOException {

    String file_name = "C:/Users/Desktop/test.txt";


        ReadFile file = new ReadFile(file_name);
        String[] aryLines = file.OpenFile();
        int nLines = file.readLines();
        int i = 0;            

    for (i = 0; i < nLines; i++) {
        System.out.println(aryLines[i]);
      }
    }    
  }

这是我的课程,它将读取文本文件并感知行数

package textfiles;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class ReadFile {

private String path;

public ReadFile(String file_path) {
    path = file_path;
}
int readLines() throws IOException {

  FileReader file_to_read = new FileReader(path);
  BufferedReader bf = new BufferedReader(file_to_read);

  int numberOfLines = 0;
  String aLine;

  while ((aLine = bf.readLine()) != null) {
  numberOfLines++;
}
bf.close();
return numberOfLines;
}

public String[] OpenFile() throws IOException {

  FileReader fr = new FileReader(path);
  BufferedReader textReader = new BufferedReader(fr);

  int numberOfLines = 0;

  String[] textData = new String[numberOfLines];

  int i;

 for (i = 0; i < numberOfLines; i++) {
    textData[i] = textReader.readLine();
  }

textReader.close();
return textData;
 }
}

请记住,我是自学成才;我可能没有正确缩进,或者我可能犯了简单的错误,但不要粗鲁。有人可以看看这个,看看为什么它没有感知行数(int numberOfLines)以及为什么它不起作用,除非我硬编码readLines()方法中的行数。

3 个答案:

答案 0 :(得分:2)

问题是,您使用int numberOfLines = 0;

将行数设置为零

我建议使用行列表,然后将其转换为数组。

public String[] OpenFile() throws IOException {

  FileReader fr = new FileReader(path);
  BufferedReader textReader = new BufferedReader(fr);

  //int numberOfLines = 0; //this is not needed

  List<String> textData = new ArrayList<String>(); //we don't know how many lines are there going to be in the file

  //this part should work akin to the readLines part
  String aLine;
  while ((aLine = bf.readLine()) != null) {
      textData.add(aLine); //add the line to the list
  }

  textReader.close();
  return textData.toArray(new String[textData.size()]); //convert it to an array, and return
 }
}

答案 1 :(得分:0)

int numberOfLines = 0;
String[] textData = new String[numberOfLines];

textData是一个空数组。以下for循环不会做任何事情。

另请注意,这不是逐行读取文件的最佳方法。以下是如何从文本文件中获取行的正确示例:

BufferedReader br = new BufferedReader(new FileReader(file));
String line;
ArrayList<String> list = new ArrayList<String>();
while ((line = br.readLine()) != null) {
   list.add(line);
}
br.close();

我还建议你阅读面向对象概念的教程。

答案 2 :(得分:0)

这是我写了一段时间的课程,我认为你可能会觉得有帮助。

public class FileIO {
  static public String getContents(File aFile) {
    StringBuilder contents = new StringBuilder();
    try {
        //use buffering, reading one line at a time
        //FileReader always assumes default encoding is OK!
        BufferedReader input = new BufferedReader(new FileReader(aFile));
        try {
            String line = null; //not declared within while loop
            /*
             * readLine is a bit quirky :
             * it returns the content of a line MINUS the newline.
             * it returns null only for the END of the stream.
             * it returns an empty String if two newlines appear in a row.
             */
            while ((line = input.readLine()) != null) {
                contents.append(line);
                contents.append(System.getProperty("line.separator"));
            }
        } finally {
            input.close();
        }
    } catch (IOException ex) {
    }
    return contents.toString();
}

static public File OpenFile()
{
    return (FileIO.FileDialog("Open"));
}

static private File FileDialog(String buttonText) 
{
    String defaultDirectory = System.getProperty("user.dir");
    final JFileChooser jfc = new JFileChooser(defaultDirectory);
    jfc.setMultiSelectionEnabled(false);
    jfc.setApproveButtonText(buttonText);
    if (jfc.showOpenDialog(jfc) != JFileChooser.APPROVE_OPTION) 
    {
        return (null);
    }
    File file = jfc.getSelectedFile();
    return (file);
}
}

使用:

  File file = FileIO.OpenFile(); 

它专门用于阅读文件而不是其他内容,所以希望能够成为您学习中的一个有用示例。