I load csv file of utf-8 encoding with cyrillic strings. After parsing in Flow interface - i see not cyrillic, but not readable symbols like "пїўпѕЂпѕ™пїђпѕ" How can i use utf-8 cyrillic strings in H2O?
相关问题
- How to convert a string to a byte array which is c
- Character Encoding in iframes
- Including decimal equivalent of a char in a charac
- In Java: why some Stream methods take int instead
- ColdFusion XLS “Export” and Character Encoding
相关文章
- iconv() Vs. utf8_encode()
- When sending XML to JMS should I use TextMessage o
- Google app engine datastore string encoding proble
- How can i get know that my String contains diacrit
- Python thinks a 3000-line text file is one line lo
- servlet request parameter character encoding
- C# method to do URL encoding?
- What is exactly an overlong form/encoding?
check your csv file in text and binary presentation to find how Cyrillic text is encoded, if it is UTF-8 it should look like this:
Привет
for the word
Привет
This appears to be a bug in the Flow interface, but only in the setupParse command. If you continue through and do the import, the data gets imported correctly.
I've reported the bug, with test data and screenshots (taken in Firefox) here:
https://0xdata.atlassian.net/browse/PUBDEV-4640
So if you have additional information, or the bug is behaving differently for you, it'd be good to add it to that bug report.