Problem with french character display in Excel file
843838Mar 16 2007 — edited Mar 16 2007In my program I am exporting the french content into one excel file from JSP through the following meta code.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
the characters in french are not getting displayed properly like display of junk characters instead of french ones.
when the page is displyed in HTML. it is proper but when i do export the page to excel with the following
String mimeType = "application/vnd.ms-excel";
response.setContentType(mimeType);
Junk characters get displayed in Excel
~Aman