私はこのコードを使用しています。アンドロイドで行ごとに読む方法は?
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("config.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
while ((br.readLine()) != null) {
temp1 = br.readLine();
temp2 = br.readLine();
}
in.close();
}catch (Exception e){//Catch exception if any
Toast.makeText(getBaseContext(), "Exception", Toast.LENGTH_LONG).show();
}
Toast.makeText(getBaseContext(), temp1+temp2, Toast.LENGTH_LONG).show();
これは例外を示しており、temp1とtemp2を更新していません。
あなたは2つの異なる変数の同じ行を保存しますか?または、temp1とtemp2の最後の2行を保存したいだけですか? – SERPRO
最初の2行のファイルを2つの異なる変数に保存します。 – xkrlaix