java - Gibberish characters in Excel Export -
i'm getting gibberish characters in exported excel web page
in actionimpl.java
excelbean.setheaders(constants.values);
in constants.java
public static final string[] values= { "agrès"};
i should - agrès although i'm getting - agrès
replace è
"agrès" below:
- java source code: è
\u00e8
i.e.agr\u00e8s
- using html entity: è
è
i.e.agrès
Comments
Post a Comment