Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 574483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:50:08+00:00 2026-05-13T13:50:08+00:00

In reference to question Can anyone explain the File() parameters used to download file

  • 0

In reference to question

Can anyone explain the File() parameters used to download file in android?

Can I do it without creating virtual SD Card. Is there any way to save the file in phone memory in internal memory? if it is possible without using the virtual SD Card, then how?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:50:09+00:00Added an answer on May 13, 2026 at 1:50 pm

    your question is a bit unclear about which you want to use, so here’s both.

    Like mbaird said, you can easily save a file to the phone’s internal storage using
    Context.openFileOutput(). For example:

    // Create file on internal storage and open it for writing
    FileOutputStream fileOut;
    try {
        fileOut = openFileOutput(userId +".ics", Context.MODE_PRIVATE);
    } catch (IOException e) {
        // Error handling
    }
    
    // Write to output stream as usual
    // ...
    

    This would create a new file on the phone’s internal storage, at a path like this:
    /data/data/com.example.yourpackagename/files/123456.ics.

    Only your application can read this file; others will not be able to read this file, like they would if it was on the SD card.


    If you want to save a file to the SD card, you need something like this:

    if (Environment.getExternalStorageState() != Environment.MEDIA_MOUNTED) {
        // SD card is not available
        return;
    }
    
    File root = Environment.getExternalStorageDirectory() +"/myapp/";
    File newFile = new File(root, userId +".ics");
    FileOutputStream fileOut = new FileOutputStream(newFile);
    
    // Write to output stream as usual
    // ...
    

    As you can see, you cannot rely on an SD card being present and available for writing to at any given point in time. This could be for several reasons:

    • The device/emulator has no SD card
    • The SD card is being shared with the PC
    • The SD card is read-only
    • The SD card has no file system
    • The SD card is corrupt
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone recommend a good ANSI SQL reference manual? I don't necessary mean a
Can anyone explain why the code below, when run, will occasionally result in some
This is in reference to a question I asked earlier. Aside from viewing the
This is in reference to the question previously asked The problem here is, each
I'm writing this question with reference to this one which I wrote yesterday. After
(Java question) If I reference a field in an inner class, does this cause
This question builds off of a previously asked question: Pass by reference multidimensional array
EDIT: This question is about finding definitive reference to MySQL syntax on SELECT modifying
This is in reference to my other question Auto Clearing Textbox . If I
The question is if a database connection should be passed in by reference or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.