Unit IV
Unit IV
Files
• Android supplies some basic file-management
tools to help you deal with the file system.
Many of these utilities are located within the
java.io.File package.
• Android does supply some specialized utilities
for file management that are available from
the application Context.
• deleteFile — Enables you to remove fi les
created by the current application
• fileList — Returns a string array that includes
all the files created by the current application
int c;
String temp="";
while( (c = fin.read()) != -1){
temp = temp + Character.toString((char)c);
}