Java Saving Data In File Internal

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 2K views
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??
 
Physics news 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.
 
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?
 
Can you give me any link about how to encrypt or zip the files from the code?