0

アプリはセンサー データを記録し、そのデータを .txt ファイルとして電話の SD カードに書き込みます。

データ収集プロセス中は、いつでも停止ボタンを押して書き込みを停止できます。

停止ボタンが押されたら、「ファイルの終わり」を追加して閉じます。

しかし、最後に現れる一連の単語は見たことがありません。どこが悪いの??

ストップボタン部:

// stop button
stopButton = (Button) findViewById(R.id.button6);
stopButton.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {

        startFlag = false;

        // record down the step count both in file and UI
        listAdapter.add(txtName.getText() + ".txt: " + String.valueOf(stepCount));
        dataCollector.myPrintWriter.write("End Of File");

        dataCollector.clearStampNumber();
        dataCollector.stopSaving();
    }
});

ファイル書き込み部分:

    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStreamWriter;
    import java.io.PrintWriter;

    import android.widget.CheckBox;
    import android.widget.EditText;

    public class DataCollector {

        File myFile;
        FileOutputStream fOut;
        OutputStreamWriter myOutWriter;
        BufferedWriter myBufferedWriter;
        PrintWriter myPrintWriter;

        private boolean isStamped;
        private int timeStampNo;

        // constructor
        public DataCollector() {

            isStamped = false;
            timeStampNo = 0;

            accelerationWanted = false;
            rotationRateWanted = false;
            magneticFieldWanted = false;
        }

        public void setStamp() {

            isStamped = true;
            timeStampNo++;
        }

        public void setFilePath(EditText txtName) {

            myFile = new File("/sdcard/ResearchData/" + txtName.getText() + ".txt");

            try {
                myFile.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }

            try {
                fOut = new FileOutputStream(myFile);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }

            myOutWriter = new OutputStreamWriter(fOut);
            myBufferedWriter = new BufferedWriter(myOutWriter);
            myPrintWriter = new PrintWriter(myBufferedWriter);

        }

        public void saveData(double[] acceleration, double[] rotationRate, double[] magneticField, long startTime, long currentTime) {

                myPrintWriter.write(currentTime - startTime + " " + acceleration[0] + " " + acceleration[1] + " " + acceleration[2] + " " + rotationRate[0] + " " + rotationRate[1] + " " + rotationRate[2] + " " + magneticField[0] + " " + magneticField[1] + " " + magneticField[2] + "\n");
        }

        public void stopSaving() {

            myPrintWriter.flush();
            myPrintWriter.close();

            try {
                myOutWriter.close();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (NullPointerException e) {
                e.printStackTrace();
            }
            try {
                fOut.close();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (NullPointerException e) {
                e.printStackTrace();
            }

        }
4

2 に答える 2

2

stopSaving、ライターをフラッシュして閉じることから始めます。

myPrintWriter.flush();
myPrintWriter.close();

基になる outputStream が閉じられる前にすべてがコミットされていることを確認します。

于 2013-06-18T08:24:51.353 に答える