I am reading a csv file through CSVReader of Apache in a java application. This csv contains some italian characters like 'è'. When I am running this application on my local tomcat server then it is reading such characters correctly. but when I am deploying same application on remote Tomcat server. Then it is reading these characters as '?'.
Note: in both the cases deployed application is same, CSV file is same, accessing the application from the same system. Only the difference is one is running on local machine and other is on remote machine.
I am reading this file through InputStreamreader. Any one has the idea what can be the issue?