Tagged Questions
The shift-jis tag has no wiki summary.
6
votes
6answers
384 views
Space-saving character encoding for japanese?
In my opinion a common problem: character encoding in combination with a bitmap-font. Most multi-language encodings have an huge space between different character types and even a lot of unused code ...
4
votes
3answers
202 views
Pyparsing - parse jascii text from mixed jascii/ascii text file?
I have a text file with mixed jascii/shift-jis and ascii text. I'm using pyparsing and am unable to tokenize such strings.
Here is an example code:
from pyparsing import *
subrange = ...
4
votes
2answers
569 views
Japanese COBOL code on IBM mainframe in Shift-JIS; represented after transfer to a PC how?
We have a Japanese client that has source code in COBOL on an mainframe. He claims the code on the mainframe is represented in Shift-JIS2 (and we think we understand that pretty well). When that ...
3
votes
3answers
177 views
Japanese mojibake detection
I want to know if there is a way to detect mojibake (Invalid) characters by their byte range. (For a simple example, detecting valid ascii characters is just to see if their byte values are less 128) ...
2
votes
2answers
473 views
shift jis decoding/encoding in perl
When I try decode a shift-jis encoded string and encode it back, some of the characters get garbled:
I have following code:
use Encode qw(decode encode);
$val=;
print "\nbefore decoding: $val";
my ...
2
votes
1answer
413 views
Open a SHIFT_JIS file in Ruby 1.8.7
This is one of those things that seems like it should be laughably easy but I'm stuck...
I need to open a CSV file that is stored in SHIFT_JIS encoding and decode it to Unicode and also encode in ...
1
vote
1answer
133 views
decoding shift-jis: “illeagal multibyte sequence”
I'm trying to decode a shift-jis string, like this:
string.decode('shift-jis').encode('utf-8')
to be able to view it in my program.
When I come across 2 shift-jis characters, in hex "0x87 0x54" and ...
1
vote
1answer
225 views
Using XOR on Shift-JIS characters in Java
So I'm trying to write a little decryption program but I'm running into a little trouble.
I'm applying XOR to the characters with 'FF' (reversing all the bits) and I'm doing that by converting the ...
1
vote
2answers
726 views
How do I process lines with CRLF, NEL line terminators?
I need to process a file with shift_jis encoding. However the line terminators are in a format that im not familar with.
> file record.CSV
record.CSV: Non-ISO extended-ASCII text, with CRLF, NEL ...
1
vote
1answer
298 views
Are there any problems converting between SHIFT_JIS and Unicode encodings?
I've heard there are (used to be?) ambiguous mappings between Unicode and SHIFT_JIS codes. This KB article somewhat proves this.
So the question is: will I lose any data if I take SHIFT_JIS-encoded ...
0
votes
1answer
18 views
Smarty - Shift-jis encoding without using PHP
I want to show Shift-jis characters but only when displaying it. Store in UTF-8 and show in Shift-jis, so what is the solution to do that in Smarty?
0
votes
1answer
64 views
How can I convert Shift_JIS character codes to unicode characters in python?
I have a list of Shift_JIS character codes (in integers) that I want to convert into unicode characters. I think I need a version of the chr()/unichr() function that works in other encodings.
I've ...
0
votes
0answers
29 views
How to RSS feed with encode Shift_JIS
How to encode a RSS feed with Shift_JIS Encoding in php. When I mention it, it breaks up and returns empty result.
Any sample code or reference will be helpful.
Thanks
Nizam
0
votes
1answer
155 views
Error parsing emails using Python's email module when the encoding is in shift_jis
I am getting an error that says "UnicodeDecodeError: 'shift_jis' codec can't decode bytes in position 2-3: illegal multibyte sequence" when I try to use my email parser to decode a shift_jis encoded ...
0
votes
1answer
314 views
Use iconv API in C
I try to convert a sjis string to utf-8 using the iconv API. I compiled it already succesfully, but the output isn't what I expected.
My code:
void convertUtf8ToSjis(char* utf8, char* sjis){
...
0
votes
1answer
170 views
Retrieving a specified glyph from freetype (SHIFT JIS encoded)?
Until now I used a texture (bitmapfont) for font rendering, but I'm trying to get freetype2 working. All my strings are SHIFT_JIS encoded and my only Problem is now to get from freetype the right ...
0
votes
1answer
45 views
How to rewrite the SJIStoJIS function from php to python
I need convert SHIFT_JIS charset to JIS charset by python.I found a function on google codesearch. But the function is used php. I can't use python's unpack() correctly. Plz give me some help.Thank ...
0
votes
1answer
360 views
problem passing Japanese characters(UTF-8) via json_encode
Having problems returning a list of Japanese terms from an MSSql database as JSON.
If I return them as a bunch of list items all is ok, but I can not seem to get json encode to work for me.
Any ...
0
votes
1answer
232 views
How to detect the character encoding of a file in Java?
Good day,
Our application receives files from our users, and those files must be validated if they are of the encoding type that we support (i.e. UTF-8, Shift-JIS, EUC-JP), and once that file is ...
0
votes
1answer
317 views
Using SHIFT_JIS text in PHP
I am building a form that needs to accept characters encoded in SHIFT_JIS and then send those results via email to a recipient. I've tried to simply capture the results from the $_POST variable and ...
0
votes
3answers
254 views
how to open a URL with non utf-8 arguments
Using Python I need to transfer non utf-8 encoded data (specifically shift-jis) to a URL via the query string.
How should I transfer the data? Quote it? Encode in utf-8?
Thanks