Merge branch 'qutian_Fang' into 'develop'

quntianfang merge



See merge request !10
This commit is contained in:
吴子吉 2019-10-12 00:02:21 +08:00
commit ee13ee922c
1 changed files with 2 additions and 0 deletions

View File

@ -285,6 +285,7 @@ public class BackupUtils {
+ "=0", null, null);
if (noteCursor != null) {
//如果不为空
if (noteCursor.moveToFirst()) {
do {
ps.println(String.format(getFormat(FORMAT_NOTE_DATE), DateFormat.format(
@ -292,6 +293,7 @@ public class BackupUtils {
noteCursor.getLong(NOTE_COLUMN_MODIFIED_DATE))));
// Query data belong to this note
String noteId = noteCursor.getString(NOTE_COLUMN_ID);
//通过id导出文本
exportNoteToText(noteId, ps);
} while (noteCursor.moveToNext());
}