以下のこのテキスト ファイルは、Person オブジェクトとは何かのコレクションです...この person オブジェクトには名前と電話番号があります
ジルニム # 9090092323アラディン # 4243535345 デファイ
ダック # 4354656575
プログラムが使用するためにこのファイルを復元しようとしていますが、これらの文字列を分割して個人インスタンスに渡す方法がわかりません
Person s = new Person( String Name, String phonenumber);
これらの名前と番号を渡して、人の新しいインスタンスを作成するにはどうすればよいですか。
public void restore(String fileName) {
// TODO : implement this method.
// restore bst from a file, if file exists.
// do nothing, otherwise.
File fichier = new File(fileName);
if (fichier.exists())
try {
Scanner n = new Scanner(new File(fileName));
while(n.hasNextLine()){
Person s = new Person( n.nextLine(), n.next(pattern));
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}