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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:43:55+00:00 2026-06-03T02:43:55+00:00

In my application, when it loads up, it makes a web call which retrieves

  • 0

In my application, when it loads up, it makes a web call which retrieves a JSON string. I want to store this JSON string to the phone so the application won’t crash if the user loses connection. JSON string is required to set the text of the application. So I am doing this

    File myDir = new File(getFilesDir().getAbsolutePath());

                FileWriter fw = new FileWriter(myDir + "/jsonMain.txt");
                fw.write(sJsonMain);
                fw.close();

And then to retrieve it I am doing this

    BufferedReader br = new BufferedReader(new FileReader(
                            myDir + "/jsonMain.txt"));
                    sStoredJSON = br.readLine();

It works fine with other JSON strings, however it is not with the Large JSON string. I checked the log and it says this

04-26 10:00:44.511: I/global(893): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.

Could someone please tell me how else I can read in a large string like this?

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-03T02:43:56+00:00Added an answer on June 3, 2026 at 2:43 am

    try this:

    BufferedReader br = new BufferedReader(new FileReader(
                            myDir + "/jsonMain.txt"), 8); // or a higher value than 8
    sStoredJSON = br.readLine();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We've got a Spring based web application that makes use of Hibernate to load/store
I have an asp.net web application which I want have multilingual support now. For
I have a web application which makes quite a few AJAX requests. Some of
As we know content provider loads on application run. But I want to make
I have an application which loads up c# source files dynamically and runs them
I have a C# application which loads at startup, and logs data to a
I'm working with a rather large .net web application. Users want to be able
I have an ASP.NET MVC 3 (.NET 4) web application. This app fetches data
I've got a PHP application which needs to grab the contents from another web
I've got a web application that controls which web applications get served traffic from

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.