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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:30:54+00:00 2026-06-10T11:30:54+00:00

now im trying to use this FileOutputStream fos = getContext().openFileOutput(CalEvents, Context.MODE_PRIVATE); ObjectOutputStream oos =

  • 0

now im trying to use this

FileOutputStream fos = getContext().openFileOutput("CalEvents", Context.MODE_PRIVATE);
    ObjectOutputStream oos = new ObjectOutputStream(fos);
    oos.writeObject(returnlist);
    oos.close();

in order to save “returnlist” which is an ArrayList to the file “CalEvents”
now my question is , is that the right way to do it?
and how do i retrieve the list back?

thanks in advance

  • 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-06-10T11:30:55+00:00Added an answer on June 10, 2026 at 11:30 am

    Is this what you want to do ?

    FileInputStream fis;
    try {
        fis = openFileInput("CalEvents");
        ObjectInputStream ois = new ObjectInputStream(fis);
        ArrayList<Object> returnlist = (ArrayList<Object>) ois.readObject();
        ois.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }
    

    EDIT: Can be simplified:

    FileInputStream fis;
    try {
        fis = openFileInput("CalEvents");
        ObjectInputStream ois = new ObjectInputStream(fis);
        ArrayList<Object> returnlist = (ArrayList<Object>) ois.readObject();
        ois.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
    

    Assuming that you are in a class which extends Context (like Activity). If not, then you will have to call the openFileInput() method on an object which extends Context.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying for hours now to solve this problem.. So.. I want to use
I'm new to Drupal 7. Right now I'm trying to use D7 to build
I am now trying to use Preference class using Preferences pfrOfThis = Preferences.userNodeForPackage(this) It
Im new to android development. Now im trying to use sqlite db. I created
i am trying to use this code: <%= File.ReadAllText(Server.MapPath(Members/newsletters/welcome.html))%> which works great but now
Now I am trying to use MPI_Sendand MPI_Recv to pass best found solutions among
Right now I have been trying to use Launchpad's API to write a small
I'm trying to use regular expression right now and I'm really confuse. I want
I am trying to use the timed_wait from boost. Now I am actually not
I am now trying to create new database manager under Fragment class. But unfortunately,

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.