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 7673617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:33:14+00:00 2026-05-31T16:33:14+00:00

I want to be able to create a file from the Content Provider, however

  • 0

I want to be able to create a file from the Content Provider, however I get the following error:

java.io.Filenotfoundexception: /0: open file failed: erofs (read-only file system)

What I am trying to do is create a file whenever an application calls the insert method from my Provider. This is the excerpt of the code that does the file creation:

FileWriter fstream = new FileWriter(valueKey);
BufferedWriter out = new BufferedWriter(fstream); 
out.write(valueContent);
out.close();

Originally I wanted to use openFileOutput() but the function appears to be undefined.

Anyone has a workaround to this problem?

EDIT: I found out that I had to specify the directory as well. Here is a more complete snippet of the code:

File file = new File("/data/data/Project.Package.Structure/files/"+valueKey);
file.createNewFile();
FileWriter fstream = new FileWriter(file);
BufferedWriter out = new BufferedWriter(fstream);
out.write(valueContent);
out.close();    

I also enabled the permission

<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />

This time I got an error saying:

java.io.IOException: open failed: ENOENT (No such file or directory)
  • 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-31T16:33:15+00:00Added an answer on May 31, 2026 at 4:33 pm

    Try this:

    File parentDirectory = new File("/data/data/Project.Package.Structure/files");
    if(!parentDirectory.exists())
    {
        System.err.println("It seems like parent directory does not exist...");
        if(!parentDirectory.mkdirs())
        {
             System.err.println("And we cannot create it...");
             // we have to return, throw or something else
        }
    }
    
    File file = new File(parentDirectory, String.valueOf(valueKey));
    file.createNewFile();
    
    BufferedWriter out = new BufferedWriter(new FileWriter(file));
    try
    {
        out.write(valueContent);
        System.err.println("Now it works!");
    }
    catch(IOException e)
    {
        e.printStackTrace();
    }
    // Anyway don't forget to close streams
    finally
    {
         out.close();   
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to be able to create a temporary text File in Java to
I want to be able to create the XSD file for my typed dataset
I create a file in JavaScript. Now I want to be able to make
I want to create an app and to be able to update it from
I've written following code to get the content from a web page and save
I want to be able to create a GUID/UUID on the iPhone and iPad.
I want to be able to create an email message with an attachment, but
I want to be able to create links looking like buttons with dynamic text
I want to be able to create modal dialogs, with, for example close: function()
I want to be able to create a KPI List on my MOSS 2007

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.