0
我正在玩touchpaint api,我想知道是否有人可以指向一些代碼,可以將繪圖保存到SD卡。Android touchpaint API
我正在玩touchpaint api,我想知道是否有人可以指向一些代碼,可以將繪圖保存到SD卡。Android touchpaint API
從傳感器/ src目錄/ AEXP /傳感器/ SensorMonitor.java Android SDK中的樣本中發現:
這是你如何創建文件:
private PrintWriter captureFile;
File captureFileName = new File("/sdcard", "capture.csv");
captureStateText = "Capture: "+captureFileName.getAbsolutePath();
try {
captureFile = new PrintWriter(new FileWriter(captureFileName, false));
} catch(IOException ex) {
Log.e(LOG_TAG, ex.getMessage(), ex);
captureStateText = "Capture: "+ex.getMessage();
}
這是你如何寫入文件:
if(captureFile != null) {
for(int i = 0 ; i < sensorEvent.values.length ; ++i) {
if(i > 0)
captureFile.print(",");
captureFile.print(Float.toString(sensorEvent.values[i]));
}
captureFile.println();
}
}
最後關閉文件:
captureFile.close();