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:

  1. java source code: è \u00e8 i.e. agr\u00e8s
  2. using html entity: è è i.e. agrès

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -