Sunday 13, Apr 2025
We are moved to new domain
Click -> www.ehowtonow.com
Sunday, 1 December 2013

Download Excel file using JAX-RS RESTful Webservice


In this tutorial we are going to see how to download text file using RESTful web service
@Produces("application/vnd.ms-excel") annotation
1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project .
2. Create the Project called RESTful-WebService
3. Add the following jar into WEF-INF/lib folder
add jar
4. Create package called com.javatutorialscorner.jaxrs.downloadfile under RESTful-WebService
5. Create Java class DownloadExcelFile under com.javatutorialscorner.jaxrs.downloadfile package
DownloadExcelFile.java
package com.javatutorialscorner.jaxrs.downloadfile;

import java.io.File;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;

@Path("/xlsfiledownload")
public class DownloadExcelFile {

private static final String FILE_PATH = "C://jtc//java-tutorials.xls";
@GET
@Path("/excel-file")
@Produces("application/vnd.ms-excel")
public Response downloadFile() {
File file = new File(FILE_PATH);
ResponseBuilder responseBuilder = Response.ok((Object)file);
responseBuilder.header("Content-Disposition",
"attachment; filename=\"java-tutorials-corner.xls\"");
return responseBuilder.build();
}
}

@Produces("application/vnd.ms-excel") used to set output response xls file.
Content-Disposition in response header to tell user agent to pop up download box to download file

6.Configure Jersey Servlet Dispatcher
you need to configure REST as servlet in web.xml.
web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>JAX-RS-Path</display-name>
<servlet>
<servlet-name>jersey-serlvet</servlet-name>
<servlet-class>
com.sun.jersey.spi.container.servlet.ServletContainer
</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.javatutorialscorner.jaxrs.downloadfile</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>jersey-serlvet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>

The servlet class available in jersey com.sun.jersey.spi.container.servlet.ServletContainer. The init param com.sun.jersey.config.property.package is used to define in which package jersey will look for the service classes.This package points to your resource class package. URL pattern is the part of base URL

Now you can run the service and access the service by calling the following URL

http://localhost:8080/RESTful-WebService/rest/xlsfiledownload/excel-file

Output
xls

Shop and help us

Flipkart Offer Snapdeal offer Amazon.in offer Amazon.com offer

Related Posts:

  • JAX-RS to Produce JSON using JacksonIn this tutorial we are going to see how to produce JSON result type using RESTful web service and Jackson 1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project . 2. Create the Project called… Read More
  • JAX-RS Multiple Parameter with @PathParamIn this tutorial we are going to see how to pass multiple parameters to RESTful web service via URL using @PathParam 1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project . 2. Create the Proje… Read More
  • JAX-RS to Consume JSON using JacksonIn this tutorial we are going to see how to consume JSON type input using RESTful web service and Jackson 1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project . 2. Create the Project called… Read More
  • JAX-RS Single Param with @PathParmIn this tutorial we are going to see how to pass parameter to RESTful web service via URL using @PathParam1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project . 2. Create the Project called R… Read More
  • Download image using JAX-RS RESTful WebserviceIn this tutorial we are going to see how to download image file using RESTful web service @Produces("image/png") annotation 1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project . 2. Create… Read More
  • Blogger Comments
  • Facebook Comments
  • Disqus Comments

0 comments:

Post a Comment

Item Reviewed: Download Excel file using JAX-RS RESTful Webservice Rating: 5 Reviewed By: eHowToNow