次の内容のテキスト ファイルがあります。
one
two
three
four
Java のテキスト ファイル内の位置で文字列「three」にアクセスしたいのですが、Google で部分文字列の概念を見つけましたが、使用できません。
これまでのところ、ファイルの内容を読み取ることができます:
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) );