Files are pretty standard with Android. Filters, Streams, Readers,
etc.  Permissions are handled based on the app:

"Files

You can store files directly on the mobile device or on a removable
storage medium. By default, other applications cannot access these
files.

To read data from a file, call Context.openFileInput() and pass it the
local name and path of the file. It returns a standard Java
FileInputStream object. To write to a file, call Context.openFileOutput
() with the name and path. It returns a FileOutputStream object.
Calling these methods with name and path strings from another
application will not work; you can only access local files.

If you have a static file to package with your application at compile
time, you can save the file in your project in res/raw/myDataFile, and
then open it with Resources.openRawResource (R.raw.myDataFile). It
returns an InputStream object that you can use to read from the file.
"

http://developer.android.com/reference/java/io/package-summary.html





On Mar 16, 4:52 am, "[email protected]"
<[email protected]> wrote:
> Thank you.
>
> I am looking for some material which would give clear picture of file
> handling like APIs available for file handling, classes available etc.
> Does android have separate file handling mechanism or is it similar to
> java?
> Please respond to this question.
>
> Thanks and Regards.
>
> On Mar 16, 12:55 pm, "carl.whalley" <[email protected]>
> wrote:
>
> > This should give you some 
> > pointers:http://markmail.org/message/qgfx35u7sjb4z4wr
>
> > --AndroidAcademy:http://www.androidacademy.com
>
> > On Mar 16, 7:46 am, "[email protected]"
>
> > <[email protected]> wrote:
> > > Hi,
>
> > > I am new to thisandroidplatform. Could someone tell me how does
> > >androiddeal withfilehandling?
>
> > > Thanks and Regards.- Hide quoted text -
>
> > - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to