Java Saving Data In File Internal

fireflies
Messages
210
Reaction score
13
Hello
I am trying to read data from one activity, save it to a file... and when open another activity I will be able to read that file(by opening it).

I searched for tutorials, all they are showing on the same activity. I figured out how the code works.. but I'm not able to understand what will be the directory (parent directory while saving file). This is getting me confused that how can I make new file if no file still created, or if created then edit that file in the first activity... and how to even get the directory when I want to open it in another activity??

I learned from this page first: https://developer.android.com/training/data-storage/files.html

It is confusing because here
Java:
File file = new File(context.getFilesDir(), filename);

is getting error because of the "context". What will be the context??
 
on Phys.org
Try using the filesystem apis to help you determine the working directory. Often these are questions that to search for the answer will take longer than actually testing it on your device.
 
Here's a simple Processing java example:

Java:
void setup() {
  File curdir = new File(".");
  println("curdir="+curdir.getAbsoluteFile());
}
 
Its okay to write to external memory that's the SD card. My code was to show you where it would write your file. The DOT means the current directory and the api tells you what directory is considered the current directory.
 
Actually the app is kind of a diary. If I use external data then it is not secure anymore. Other applications can read the data too.
 
Cannot it be made to internal storage?
 
  • #10
Can you give me any link about how to encrypt or zip the files from the code?
 
  • #11
Here’s one

https://www.mkyong.com/java/how-to-compress-files-in-zip-format/
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 16 ·
Replies
16
Views
4K
  • · Replies 33 ·
2
Replies
33
Views
3K
  • · Replies 22 ·
Replies
22
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
Replies
3
Views
3K
  • · Replies 12 ·
Replies
12
Views
12K