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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -