All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tmlx-grid-excel.1.0.0.source-code.ExcelGenerator Maven / Gradle / Ivy


import java.io.IOException;
import java.net.URLDecoder;

import javax.servlet.http.*;

import com.dhtmlx.xml2excel.ExcelWriter;


@SuppressWarnings("serial")
public class ExcelGenerator extends HttpServlet {

	public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException {
		String xml = req.getParameter("grid_xml");
		xml = URLDecoder.decode(xml, "UTF-8");
		(new ExcelWriter()).generate(xml, resp);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy