October 2020
Beginner to intermediate
334 pages
6h 2m
English
Introduction to file I/O of Android
Internal vs. external storage
How to use internal storage
When you need to work with video, audio, json, or just plain text files, you can use the Java file I/O for local files. You’ll use the same File, InputStream, and OutputWriter, and other I/O classes in Java—if you’ve worked with them before. What will be different in Android is where you save them. In a Java desktop application, you can put your files practically anywhere you want. That’s not the case in Android. Just like in a Java web application, Android apps are not ...