使用java从文本文件中读取一定数量的行



我有一个包含数据的文本文件。档案里有所有月份的信息。假设1月份的信息占用50行。比二月初多了40行。然后我有三月等等……是否可以只读取文件的一部分?我可以说"从X行读到Y行"吗?或者是否有更好的方法来实现这一点?我只想打印一个月的数据通讯员而不是所有的文件。这是我的代码

public static void readFile()
{
  try
  {
     DataInputStream inputStream = 
     new DataInputStream(new FileInputStream("SpreadsheetDatabase2013.txt"));
   while(inputStream.available() != 0)
   {
     System.out.println("AVAILABLE: " + inputStream.available());
     System.out.println(inputStream.readUTF());
     System.out.println(inputStream.readInt());
     for (int i = 0; i < 40; i++)
     {
       System.out.println(inputStream.readUTF());
       System.out.println(inputStream.readUTF());
       System.out.println(inputStream.readUTF());
       System.out.println(inputStream.readUTF());
       System.out.println(inputStream.readUTF());
       System.out.println(inputStream.readDouble());
       System.out.println(inputStream.readUTF());
       System.out.println(inputStream.readBoolean());
       System.out.println();
     }
   }// end while
   inputStream.close();
 }// end try
 catch (Exception e)
 {
   System.out.println("An error has occurred.");
 }//end catch
}//end method

感谢您的宝贵时间。

我的方法是读取文本文件的整个内容并将其存储在ArrayList中,并且只读取请求月份的行。

例子:

使用这个函数从文件中读取所有行。

/**
 * Read from a file specified by the filePath.
 * 
 * @param filePath
 *            The path of the file.
 * @return List of lines in the file.
 * @throws IOException
 */
public static ArrayList<String> readFromFile(String filePath)
        throws IOException {
    ArrayList<String> temp = new ArrayList<String>();
    File file = new File(filePath);
    if (file.exists()) {
        BufferedReader brin;
        brin = new BufferedReader(new FileReader(filePath));
        String line = brin.readLine();
        while (line != null) {
            if (!line.equals(""))
                temp.add(line);
            line = brin.readLine();
        }
        brin.close();
    }
    return temp;
}

然后从ArrayList temp中只读取你需要的。

例子:

如果你想读取二月份的数据,假设它有50行数据,从第40行开始。

for(int i=40;i<90;i++)
{
    System.out.println(temp.get(i));
}

注意:这只是一种方法。我不确定是否还有其他方法!

我将使用scanner类。

Scanner scanner = new Scanner(filename);

使用scanner.nextLine()获取文件的每一行。如果只需要从x行到y行,可以使用for循环扫描不需要的行,然后再扫描需要的行。但是要注意不要在没有抛出异常的情况下触发异常。

或者您可以通过扫描程序,并为每行添加该行的String内容到ArrayList。好运。

根据您所说的数据组织方式,我建议这样做

ArrayList<String> temp = new ArrayList<String>();
int read = 0;
File file = new File(filePath);
if (file.exists()) {
    BufferedReader brin;
    brin = new BufferedReader(new FileReader(filePath));
    String line = brin.readLine();
    while (line != null) {
        if (!line.equals("")){
            if(line.equals("March"))
                read = 1;
            else if(line.equals("April"))
                break;
            else if(read == 1)
                temp.add(line);
        }
        line = brin.readLine();
    }
    brin.close();

我自己试过了,这将包含3月到4月之间的所有数据。您可以根据需要调整它们或使它们成为变量。感谢ngo提供的基础代码。

如果你有Java 7,你可以使用Files。readAllLines(路径路径,字符集cs),例如

Path path = // Path to "SpreadsheetDatabase2013.txt"
Charset charset = // "UTF-8" or whatever charset is used
List<String> allLines = Files.readAllLines(path, charset);
List<String> relevantLines = allLines.subList(x, y);

其中x(含)和y(不含)表示感兴趣的行号,参见列表。subList(int fromIndex, int toIndex).

此解决方案的一个好处,如readAllLines()的JavaDoc中所述:

此方法确保在读取所有字节或抛出I/O错误或其他运行时异常时关闭文件。

相关内容

  • 没有找到相关文章

最新更新