Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I wantt to retun a file from a resteasy server. For this puspose, I a have a link at client side which is calling a rest service with ajax.I want return file in the rest service. I tried this two codes but both didnt work as i want.

    @POST
    @Path("/exportContacts")
    public Response exportContacts(@Context HttpServletRequest request, @QueryParam("alt") String alt) throws  IOException {

            String sb = "Sedat BaSAR";
            byte[] outputByte = sb.getBytes();


    return Response
            .ok(outputByte, MediaType.APPLICATION_OCTET_STREAM)
            .header("content-disposition","attachment; filename = temp.csv")
            .build();
    }

and also I tried this,,

@POST
@Path("/exportContacts")
public Response exportContacts(@Context HttpServletRequest request, @Context HttpServletResponse response, @QueryParam("alt") String alt) throws IOException {

    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment;filename=temp.csv");
    ServletOutputStream out = response.getOutputStream();
    try {

        StringBuilder sb = new StringBuilder("Sedat BaSAR");

        InputStream in =
                new ByteArrayInputStream(sb.toString().getBytes("UTF-8"));
        byte[] outputByte = sb.getBytes();
        //copy binary contect to output stream
        while (in.read(outputByte, 0, 4096) != -1) {
            out.write(outputByte, 0, 4096);
        }
        in.close();
        out.flush();
        out.close();

    } catch (Exception e) {
    }

    return null;
}

When I check from firebug consele, both of this codes writes "Sedat BaSAR" to response of ajax call. But I want return "Sedat BaSAR" as a file. How can I do that?

Thanks in advance.

share|improve this question
Did you end up finding a solution to this? – rabs Aug 9 '12 at 4:30

1 Answer

you should create a file path for your csv file and then return your file path to client side.

for example;

html;

<div id="export">Export contacts!</div>

js;

$('#export').click(function(e) {
       $.ajax({
           url: '/exportContacts/',
           success: function(data) {
             //data is the file path/url
              document.location.href=path;
           }
        });
});

serverside;

you can return something like /files/sedatbasar.csv

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.