1.私はAndroid GPSを保存しています。SDカード内のテキストログファイルを使用して時刻を有効または無効にしています。Android GPS有効/無効時間の保存マルチテキスト行のSDCARD内のテキストファイル
前の行のデータを消去せずに、複数行のテキストを印刷したいとします。
以下のコードは、アプリケーションがスリープ状態になって再起動しているときに、完全に複数の行を印刷しています。以前のデータと一緒に行を印刷する場合は、GPSをオンまたはオフにします。
どうすればいいですか?
Required Output:(after Restart the app)
<< GPs Enabled At :2016/06/08 17.15.00>>
<< GPs Disabled At :2016/06/08 17.45.00>>
<< GPs Enabled At :2016/06/08 17.49.00>>
<< GPs Disabled At :2016/06/08 17.52.00>>
Getting Output:(after Restart the app)
<< GPs Enabled At :2016/06/08 17.15.00>>
<< GPs Disabled At :2016/06/08 17.45.00>>
<< GPs Enabled At :2016/06/08 17.49.00>>
<< GPs Disabled At :2016/06/08 17.52.00>>
<< GPs Disabled At :2016/06/08 17.52.00>>
<< GPs Disabled At :2016/06/08 17.52.00>>
ログファイルの方法:
public void Logmethod(String NoramalStr,String Dateval)
{
/* Log FOlder Text files Starts here*/
try {
File newFolder = new File(Environment.getExternalStorageDirectory(), "GpsFolder");
if (!newFolder.exists()) {
newFolder.mkdir();
}
try {
File file = new File(newFolder, "GPSStatus" + ".txt");
file.createNewFile();
/*Writing the Log in specific files*/
BufferedWriter out;
try {
String separator1 = System.getProperty("line.separator");
FileOutputStream fOut = new FileOutputStream(new File(newFolder + "/GPSStatus.txt"), true);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
osw.append("<< " + NoramalStr +" : "+Dateval + " >>");
osw.append(separator1); // this will add new line ;
osw.flush();
osw.close();
fOut.close();
Log.i(NoramalStr," : "+Dateval);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} catch (Exception ex) {
System.out.println("ex: " + ex);
}
} catch (Exception e) {
System.out.println("e: " + e);
}
}
私は疑問について少しは不明です。 「消去」という言葉は何度か言及されていますが、必要な出力と実際の出力の違いは、重複した行を印刷していることです。重複や消しゴムの問題ですか? – OYRM
Logmethodが複数回呼び出されているようです。そのメソッドを呼び出すコードを追加できますか? – TDG
@Kumar:アプリが実行されていないときにログを印刷しようとしているか、デバイスを再起動していますか? –