Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have issue with spanish characters in java string. I have a content in a file and when i try to transform it to java object using InputStreamReader, the output of some string is "cómo" which should be "cómo". This is happening other spanish like

á = á é = é í = í ó = ó ú = ú

and more..

Could you please help me to convert it appropriate output.

Thanks in advance

share|improve this question
What encoding is the file in? Especially how is the ó represented – Mark Jan 31 '11 at 23:02

2 Answers

up vote 5 down vote accepted

Have you tried to specify the character encoding in the constructor of InputStreamReader, like so:

FileInputStream fis = new FileInputStream("file.txt");
InputStreamReader isr = new InputStreamReader(fis, "UTF-8");
share|improve this answer
i checked the transformation encoding is done using "UTF-8". So i thought if whether is there any way to convert string from "cómo" to "cómo" after the transformation. – Balaji Jan 31 '11 at 23:08

Specify charset on your InputStreamReader - http://download.oracle.com/javase/1.5.0/docs/api/java/io/InputStreamReader.html#InputStreamReader(java.io.InputStream, java.lang.String)

share|improve this answer
Thanks a lot. as you said the issue was with my java class. It is working now :) – Balaji Jan 31 '11 at 23:37
uh... what was the issue with your java class? I have this same problem... – bobetko May 18 '11 at 16:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.