0
votes
0answers
123 views

Reading Excel using POI jar

The problem is while reading cells values which all are having "space" between the word, I can read only till space after that space the word has been dropped. for Example Name ...
0
votes
1answer
349 views

How to export <table> content (which is inside a one <div >) into excel by JSP

I have developed a web application using JSP which creates a page with several page elements and a with multiple records. I wanted to export the content in that into an excel file. I used the code ...
1
vote
0answers
99 views

Implementing a distributed database system using Microsoft Excel (back-end) and JSP (front-end)

i am working on a project which is in short a distributed database project. **Requirements** module 1: 1) Read and update an excel sheet using an excel sheet which already contains some data. ...
0
votes
1answer
882 views

Unable to generate download excel file on client side usinf poi mvc

I am unable to generate an Excel file for download on the client side. This is the code I have: <% try{ //Getting HSSFWorbook object from controller HSSFWorkbook wb= ...
0
votes
1answer
704 views

how to get last row of excel in POI and append blank row?

how to get last row of excel in POI and append blank row and write the next record after the blank row Below is my code snippet public class ResultSetToExcel { private HSSFWorkbook ...
0
votes
0answers
71 views

servlet cannot see my import

i want to create a binary excel file in servlet using apache poi: //THIS IS MY SERVLET import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import ...
2
votes
2answers
6k views

create an excel file for users to download using apache poi, jsp

I'm able to create an excel file using apache poi. however, i want users to be able to download this as a "true" excel file. the effect i want to achieve would be to have a popup box allowing the user ...
0
votes
0answers
350 views

Date datatype column using JXL

I having problem adding a cell with date data type using jexcel. Without the date everything work perfectly I have this in my servlet I have a a column that has a date datatype in my postgres DB and ...
1
vote
1answer
3k views

export data in excel using POI hssf WritableWorkbook

I have this DAO.. public class AreaDAO { private Database database; public AreaDAO(Database database) { this.database = database; } public List<Area> list() throws ...
0
votes
2answers
2k views

unreadable content error with apache POI 3.8

I'm using Apache POI 3.8. I have a JSP that generates an excel (.xslx) file. I developed it locally and the file could be opened without any problems. Then, I deployed the app in the Dev environment ...
1
vote
3answers
2k views

How to get a excel file from request?

I am uploading an excel file from one jsp page. below is the code. <form action="Upload.jsp" enctype="MULTIPART/FORM-DATA" method=post > <input type="file" name="filename" /> ...
0
votes
2answers
2k views

Only a type can be imported. org.apache.poi.hssf.usermodel.HSSFWorkbook resolves to a package

Trying to use Apache POI in a Eclipse JSP project. The POI jar is in the project's Java Resources Library list. <%@ page import="org.apache.poi.hssf.usermodel.HSSFSheet"%> at run the ...
0
votes
1answer
883 views

How to let user download the data in database to an excel sheet file from web application in Java/Struts?

I want to generate a report which includes an excel sheet which is generated from the data from the database . I am using Apache POI HSSF for creating the excel sheet file in the model. Now how to ...
0
votes
5answers
3k views

Display Excel sheet in the Browser?

I need to display the newly generated excel (from tables using Apache POI) in a web browser (whatever it is, Firefox, Opera or IE). I've created the JSP file with ...
0
votes
1answer
1k views

Is there a way to display a HSSFWorkbook Object in a JSP page?

Is there a way to Display a HSSFWorkbook Object in a JSP page without having an output file in the server side? In the code below I am providing the template file and the beans required for ...