Hi All,
I cannot export big numbers to excel. I am using POI jar files for jsp to excel export. Here i am pasting my source code.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Export to Excel</title>
</head>
<body>
<table cellpadding="3" cellspacing="3" border="1">
<tr>
<th>9 Digits</th>
<th>18 Digits</th>
<th>27 Digits</th>
</tr>
<tr>
<td>123456789</td>
<td>123456789123456789</td>
<td>123456789123456789123456789</td>
</tr>
</table>
<a href="exportData.jsp" >Export to Excel</a>
</body>
</html>
exportData.jsp
<%@page contentType="application/vnd.ms-excel" pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<table cellpadding="3" cellspacing="3" border="1">
<tr>
<th>9 Digits</th>
<th>18 Digits</th>
<th>27 Digits</th>
</tr>
<tr>
<td>123456789</td>
<td>123456789123456789</td>
<td>123456789123456789123456789</td>
</tr>
</table>
</body>
</html>
Output
9 Digits 18 Digits 27 Digits
123456789 1.23457E+15 1.23457E+26
Kindly help me to resolve this issue
--
Vinith