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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:08:57+00:00 2026-05-30T10:08:57+00:00

I am trying to build a Spring controller to serve a file from a

  • 0

I am trying to build a Spring controller to serve a file from a url:

@RequestMapping(value = "/test", method = RequestMethod.GET)
public ResponseEntity<byte[]> getFile () throws IOException {
     CommonHttpClient client = new CommonHttpClient();
     URL url = new URL("http://www.google.com");
     InputStream stream = url.openStream();
     final HttpHeaders headers = new HttpHeaders();
     headers.add("Content-Type", "text/html");
     return new ResponseEntity<byte[]>(IOUtils.toByteArray(stream), headers, HttpStatus.CREATED);
}

I have ByteArrayHttpMessageConverter in my AnnotationMethodHandlerAdaptor in bean configuration.

However, when I call this page, I am getting nonsensical strings like
“PHBYzT5QB….”
The url is definitely reachable and no IOException were thrown.
What am I missing here?

  • 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-30T10:08:58+00:00Added an answer on May 30, 2026 at 10:08 am

    I think you’re mixing few things here. If the file you want to serve available on your local file system then you don’t need to read from URL. If you define your method signature with HttpResponse parameter you will be able to get OutputStream and write to it. No converters should be necessary – just read from one stream (file) and write to the other in a loop. It is also important to set correct content type header in response.

    @RequestMapping...
    public void getFile(HttpResponse resp) throws IOException {
      InputStream is = ... // get InputStream from your file
      resp.setContentType("text/html"); // or whatever is appropriate for your file
      OutputStream os = resp.getOutputStream();
      // now read from one stream and write to the other
      byte[] buffer = new byte[1024];
      int len = in.read(buffer);
      while (len != -1) {
        out.write(buffer, 0, len);
        len = in.read(buffer);
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying build a method which returns the shortest path from one node to
I'm trying to build up a string array in JavaScript and get the results
I'm having a frustrating time with Spring 3 MVC trying to build RESTful web
I am trying to build a route with the format of {controller}{action}{classificationID}{reviewID}{CategoryID}\ but I
im trying to get a controller to return a view through a Expression Language-Filter,
I'm trying to use JQuery's $.getJSON to access Model data from the Controller, and
hi Trying to build my own spring application,I made a page to input name
I am using ASPNET MVC 2.0. I'm trying to pass a value from View
I am new to AspectJ and Spring and trying to build the example with
I'm trying to callback into my ViewResult Index() controller action from an ajax call

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.