I am trying to export a JSP page to Excel. The problem I have encountered is that Excel tries to format the string I have. For example it take 11E062 and converts it to 1.10E+63. In other words it takes some of my strings and converts them to scientific notation. Here is the code...
out.print("\"" + Data.elementAt(1) + "\"\t"
Any info or help would be great. I know it is an issue with making the variable a string. Any help would be appreciated. Thanks
out.print("\"" + Data.elementAt(1) + "\"\t"
Any info or help would be great. I know it is an issue with making the variable a string. Any help would be appreciated. Thanks