-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplan.java
43 lines (39 loc) · 1.4 KB
/
plan.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//For saving file:
//Button triggers an action saving to the downloads folder
//<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
public void exportTransactions(String transactions) {
File file = new File(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_DOWNLOADS), "transactions.json");
if (!file.mkdirs()) {
Log.e(LOG_TAG, "Directory not created");
}
FileOutputStream stream= new FileOutputStream(file);
try{
stream.write(transactiosn.getBytes());
} finally {
stream.close();
}
}
//Import file:
//Could just try and import from known folder... try to find upload element. File Picker? Yeah we're doing that....
public void exportTransactions(String transactions) {
File file = new File(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_DOWNLOADS), "transactions.json");
if (!file.mkdirs()) {
Log.e(LOG_TAG, "Directory not created");
}
StringBuilder text = new StringBuilder();
try {
BufferedReader br = new BufferedReader(new FileReader(file));
String line;
while ((line = br.readLine()) != null) {
text.append(line);
text.append('\n');
}
br.close();
}
catch (IOException e) {
Log.e("A file read error occured",e.toString());
}
//Now try to JSON then save internally
}