java - Reader properties file with latin characters -
i have properties file latin characters in it. when read properties file through spring using @resource map getting populated last character not in proper format. please can let me know reason , how fixed?
á=a é=e
entries in properties file above.
java uses unicode define non-asci characters, need replace them unicode equivalent text or html code:
char| code | html ----+--------+------- á | \u00e1 | á é | \u00e9 | é
Comments
Post a Comment