I use the following map in my java class
Map<String,String> fieldNameMap=new LinkedHashMap<String,String>();
fieldNameMap.put("provLocation", "Location");
fieldNameMap.put("deviceOwnerTn","Owner Telephone Number");
which i make available as a csv download. However in the case of the second item, when the number exceeds 5 or 6 digits, it shows up in excel with exponential formatting(eg. 1.235E+09). I want to avoid this. One possible solution was to enclose it in single quotes.(eg.'1234567890'). But how do i go about it? Please help!
NOTE: For fieldNameMap, the first parameter is the value to be populated and the second parameter is the column heading.