yoshistabber / anymemo

Automatically exported from code.google.com/p/anymemo
GNU General Public License v2.0
0 stars 0 forks source link

Import german mutated vowel (like Ä,Ö,Ü) from a csv file #167

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Import a csv file containing german text containing ä,ö,ü)
2. Will be shown in ANYmemo as <?>
3. the real problem is reading,  the text , this is wrong

What is the expected output? What do you see instead?
correct should be ä.ü,ö

What is the AnyMemo version (E.g 8.999.1, 9.0, 9.1.1)?
9.1.2

What is your Android phone model?
Nexus 7

thx

What is your Android version? 4.2.2

Original issue reported on code.google.com by reimu...@googlemail.com on 1 Mar 2013 at 10:09

GoogleCodeExporter commented 8 years ago
Android only recognize UTF-8 encoding in the text. You have to save the csv 
file in UTF-8 encoding.
In Linux / Mac:
Use vim to open csv file and type ":w ++enc=utf-8"
In Windows:
Use notepad to open your csv file and save as and select encoding "UTF-8".

Then try to import the CSV file.

Original comment by mrlhwlib...@gmail.com on 1 Mar 2013 at 5:46