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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:29:07+00:00 2026-05-26T07:29:07+00:00

I am using GSON to parse some JSON feeds in various of my applications.

  • 0

I am using GSON to parse some JSON feeds in various of my applications.

I used this tutorial and this code to make it work: http://www.javacodegeeks.com/2011/01/android-json-parsing-gson-tutorial.html

InputStream source = retrieveStream(url);
Gson gson = new Gson();
Reader reader = new InputStreamReader(source);

//***************************************************
//Should I add some code here to save to SDCARD?
//***************************************************

SearchResponse response = gson.fromJson(reader, SearchResponse.class);
List<Result> results = response.results;
for (Result result : results) {
    Toast.makeText(this, result.fromUser, Toast.LENGTH_SHORT).show();
}

My question is set in the comment:
What should I do to save this InputStreamReader to my SDCArd for an offline use?

I Googled a lot but cannot find a way to achieve this.

I guess that once I will have the answer, I will replace the 3 first line of code with:

InputStream source = new InputStream("/sdcard/my_json_file.txt");

Thank a lot for any help, I guess I am not the only one that need to achieve that…

  • 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-26T07:29:08+00:00Added an answer on May 26, 2026 at 7:29 am
    1. Create a FileOutputStream for the file you want to write to.
    2. Copy source to the FileOuputStream you created – see below –
    3. Close source
    4. Do like you said and create a new FileInputStream from path to the created file
    5. Send this new stream to your InputStreamReader

       public static void copyStream(InputStream input, OutputStream output)
          {
              byte[] buffer = new byte[32768];
              int read;
              while ((read = input.read(buffer, 0, buffer.length)) > 0)
              {
                  output.write (buffer, 0, read);
              }
          }
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to parse this Json using Gson and display the Placetype _Name and Place
Hi i am trying to parse Json using gson library.My Json String is this
I'm trying to parse some JSON object strings that I'm getting using gson-1.6.jar I
I'm trying to parse json request using google GSON (on Android although this is
I want to parse this JSON string using Gson {name:name,type:[a,b,c]} is it possible? 1st
I'm trying to parse some huge JSON file (like http://eu.battle.net/auction-data/258993a3c6b974ef3e6f22ea6f822720/auctions.json ) using gson library
I am using Gson to parse Json. What I don't understand what the return
I am using GSON to parse a Java bean and pass the JSON string
I am trying to parse a json object using gson in Android application ,the
I am using gson to parse json into java beans. For the API I

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.