1

我有一个包含以下内容的文本文件:

one
two
three
four

我想通过它在Java文本文件中的位置来访问字符串“三”。我在谷歌上找到了子字符串概念但无法使用它。

到目前为止,我能够读取文件内容:

import java.io.*;
class FileRead 
{
 public static void main(String args[])
  {
  try{
  // Open the file that is the first 
  // command line parameter
  FileInputStream fstream = new FileInputStream("textfile.txt");
  // Get the object of DataInputStream
  DataInputStream in = new DataInputStream(fstream);
  BufferedReader br = new BufferedReader(new InputStreamReader(in));
  String strLine;
  //Read File Line By Line
  while ((strLine = br.readLine()) != null)   {
  // Print the content on the console
  System.out.println (strLine);
  }
  //Close the input stream
  in.close();
    }catch (Exception e){//Catch exception if any
  System.err.println("Error: " + e.getMessage());
  }
  }

}

我想将子字符串概念应用于文件。它询问位置并显示字符串。

 String Str = new String("Welcome to Tutorialspoint.com");
 System.out.println(Str.substring(10, 15) );
4

3 回答 3

2

如果您知道您感兴趣的文件中的字节偏移量,那么这很简单:

RandomAccessFile raFile = new RandomAccessFile("textfile.txt", "r");
raFile.seek(startOffset);
byte[] bytes = new byte[length];
raFile.readFully(bytes);
raFile.close();
String str = new String(bytes, "Windows-1252"); // or whatever encoding

但要使其工作,您必须使用字节偏移量,而不是字符偏移量 - 如果文件以可变宽度编码(如 UTF-8)编码,则无法直接查找第 n 个字符,您必须从文件顶部并读取并丢弃前 n-1 个字符。

于 2013-01-04T12:09:53.363 回答
0

\r\n在您的文本文件中查找(换行符)。这样,您应该能够计算包含您的字符串的行数。

你的文件实际上是这样的

one\r\n
two\r\n
three\r\n
four\r\n
于 2013-01-04T11:37:02.353 回答
0

你似乎在寻找这个。我在那里发布的代码在字节级别上工作,所以它可能不适合你。另一种选择是使用 BufferedReader 并在这样的循环中读取单个字符:

String getString(String fileName, int start, int end) throws IOException {
    int len = end - start;
    if (len <= 0) {
        throw new IllegalArgumentException("Length of string to output is zero or negative.");
    }

    char[] buffer = new char[len];
    BufferedReader reader = new BufferedReader(new FileReader(fileName));
    for (int i = 0; i < start; i++) {
        reader.read(); // Ignore the result
    }

    reader.read(buffer, 0, len);
    return new String(buffer);
}
于 2013-01-04T12:14:50.607 回答