This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Hi, I am currently working in a Japanese project.I am facing some problems in displaying japanese characters in excel sheet in windows NT env (english Version). I am using servlet and jsp to display the japanese characters in the excel sheet.In the servlet i am setting all the neceseary things for response such as contentType("application:excel,charset=utf-8") etc... But i am not getting the japanese characters correctly.Instead i am getting junk characters in the japanese fields.
Kindly suggest me some solutions to solve the above mentioned problem.. regards Dinesh
Hi Dinesh, Please do not post the same topic in multiple forums. I am moving this to the Servlets forum.
Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher
As an experiment, try writing the data as HTML content instead, and see if you can view the characters that way. The basic possibilities are: (a) you haven't read in the data correctly in the first place, (b) something is wrong with how you're sending it, and (c) the Excel application isn't set up to view Japanese chars correctly. By displaying the data in other formats, you can get an idea where the problem is.
"I'm not back." - Bill Harding, Twister
Dinesh Ramaswamy
Greenhorn
Joined: Oct 05, 2001
Posts: 13
posted
0
Hi Jim, As u told i tried with different type like html and text file.Then also i am getting the same junk format.Actually in the servlet i am diong all this things: httpservletresponse.setContentType("application/vnd.ms-excel;charset=UTF-16"); //httpservletresponse.setContentType("text/html;charset=UTF-8"); httpservletresponse.setHeader("Content-Disposition", "attachment; filename="+fileName+".html"); httpservletresponse.setHeader("Content-Encoding", "UTF-8"); is it because of that UTF-8,i tried to set the encoding as UTF-16.But it giving some run time error stating that Internal error: exception thrown from the servlet service function (uri=/gehfs/reports/ReportServlet): java.io.UnsupportedEncodingException: UTF-16, stack: java.io.UnsupportedEncodingException: UTF-16 at sun.io.Converters.getConverterClass(Converters.java:97) at sun.io.Converters.newConverter(Converters.java:128) at sun.io.CharToByteConverter.getConverter(CharToByteConverter.java:71) at java.io.OutputStreamWriter.<init>(OutputStreamWriter.java:78) at com.netscape.server.http.servlet.NSServletResponse.getWriter(NSServletResponse.java:72) at gehfs.reports.action.HFSReportAction.generateReportForDownload(HFSReportAction.java, Compiled Code) at gehfs.reports.action.HFSReportAction.executeBusinessMethod(HFSReportAction.java:57) at gehfs.reports.controller.HFSReportServlet.doPost(HFSReportServlet.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) at javax.servlet.http.HttpServlet.service(HttpServlet.java:826) at com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:533) , root cause:
Please help me out in sorting thse problem. Regards Sriram