Hi, I made a barcode and QR code scanner app based on Zxing. It works fine, but when I try to make the app read QRs encoded with Korean 949, some weird Japanese words or just question marks show up.
So what I assume is that Korean 949 format somewhat intersects with Shift_JIS. Because Zxing tries ISO and UTF-8 and then Shift_JIS before any other formats, Shift_JIS takes over Korean 949 and thinks it's Japanese. But I don't have any need for reading Japanese QRs, so I just want to take the Shift_JIS guessing step out of the source.
So as conclusion, I want to mess with StringUtils.java and take out all the Japanese, but I can't seem to find out which lines to modify. Can anyone help me with it? Thanks.
yjhbmw@daum.net