Java Java Saving Data In File Internal

AI Thread Summary
The discussion centers on reading and writing data between activities in an Android application, specifically focusing on file storage. The user seeks clarity on how to save data to a file in one activity and access it in another, expressing confusion about the directory structure for file storage. They reference the Android developer documentation but struggle with understanding the context needed for file operations, particularly the use of `context.getFilesDir()`. The conversation highlights the importance of internal storage for security, as external storage could expose sensitive data to other applications. Suggestions include using encryption to protect the data and links to resources for implementing file compression and encryption in Java. The user expresses a need for practical examples and clearer guidance on managing file directories and ensuring data security within the app.
fireflies
Messages
210
Reaction score
12
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??
 
Technology 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.
 
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/
 
Back
Top