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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:06:33+00:00 2026-05-23T18:06:33+00:00

At the moment I can retrieve a text page as follows HttpClient client =

  • 0

At the moment I can retrieve a text page as follows

    HttpClient client = new DefaultHttpClient();
    HttpGet get = new HttpGet(
            "http://google.com");

    try {


        HttpResponse response = client.execute(get);
        BufferedReader rd = new BufferedReader(new InputStreamReader(
                response.getEntity().getContent()));

        String line = "";
        while ((line = rd.readLine()) != null) {
            System.out.println(line);


        }
    } catch (IOException e) {
        e.printStackTrace();
    }

Suppose get is targeted at a binary file. How would I save this correctly to disk?

  • 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-23T18:06:34+00:00Added an answer on May 23, 2026 at 6:06 pm

    Just don’t go via a Reader – read the data from the InputStream and write to an OutputStream.

    // Using Guava (guava-libraries.googlecode.com)
    InputStream data = response.getEntity().getContent();
    try {
        OutputStream output = new FileOutputStream(filename);
        try {
            ByteStreams.copy(data, output);
        } finally {
            Closeables.closeQuietly(output);
        }
    } finally {
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can the API for Google Maps be used to retrieve the latitude and longitude
I recently started learning JavaFX. At the moment I can't build any JavaFX project
Maybe I am having a moment of 'afternoon', but can anyone explain why I
Hallo, How can I calculate a current time moment + exactly one week? The
Perhaps I'm having a Post-Ballmer-Peak Moment . I'm hoping that someone can help point
I am at the moment making some getjson requests with jquery. They are get
Is there any way to retrieve (and update) the actual stored procedure SQL text
Okay, so basically I want to be able to retrieve keyboard text. Like entering
I would like to have a nice clean LINQ code that can get an
I can't work out how to get the SynchronizationContext of a given Thread :

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.