- I have a line with the word "Tác" in a UTF8 saved file. (Special Character á)
I read the file in Java as follow :
BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(fileDir), "UTF8"));
In Eclipse Debugmode my Value of the word I fetch from the File is T�c !
When inserting into my SQlite DB the same -> T�c
- In my existing SQLite-DB already exists entries with special characters like "Concepción"
Additional Info : Writing System.out like follow :
PrintStream out = new PrintStream(System.out, true, "UTF-8");
out.println(sSitename);
results in: T�c
Anyone do have a hint how I can solve this problem ?