我有一个包含以下内容的文本文件:
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) );