Encoding issue with Apache POI
I'm creating MS Excel file using Apache POI and everything works fine while I'm using it at localhost. But when I deploy project on Google App Engine and then try to open created file in MS Excel I can notice that all my special characters changed into question marks "?". Does anyone of you could tell me why it works on localhost but fail to show special character after deploying. public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { try { OutputStream out = null; try { String dataa = req.getParameter("dataa"); String json = URLDecoder