Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
1k views

any good alternative to Iconv library for encoding conversion?

i was using Iconv library on Ruby to convert encoding from UTF-8 to UTF-32, UTF-16 etc and it was quite good. However, I do see an issue when converting from Big5 to UTF-8 -- an exception is thrown ...
1
vote
0answers
78 views

implementing big5 over telnet protocol?

I've implemented a telnet client and one of the feature requests is to support big5 encoding. How is Big5 implemented over telnet, when only 7-bit character codes are supported? The Big5 "lead bytes" ...
1
vote
1answer
302 views

chardet apparently wrong on Big5

I'm decoding a large (about a gigabyte) flat file database, which mixes character encodings willy nilly. The python module chardet is doing a good job, so far, of identifying the encodings, but if ...
1
vote
1answer
499 views

Possible to repair garbled Chinese filenames?

I'm downloading via FTP some files with chinese names (BIG5 encoded), and Filezilla displays those filenames as garbage (as FTP cannot handle any encoding other than ASCII and UTF-8, as least the ...
0
votes
0answers
23 views

Is it possible to change the code page of a running console from another process?

I have a legacy command line tool that needs to run in codepage 950. The problem is that the tool changes the codepage to 437 by itself when it runs, no matter what the original code page is. I would ...
0
votes
0answers
79 views

TMWBuffer Component by Overbyte for Delphi incorrect WriteRecord result

Anybody using TMWBuffer component by Overbyte? I have an xml text that I write to the database. The text contains a combination of English and Chinese characters. The problem is the TMWBuffer ...
0
votes
1answer
101 views

How to set receivedDataEncoding for big5 chinese?

I have a trouble in received data with chinese-big5 encoded web-page, and I tried to get some sample code but can not find I need for big5 like below: if ([encodingName isEqualToString:@"euc-jp"]) { ...
0
votes
1answer
327 views

perl Encode qw/encode decode/ redfinied Encode.pm line XXX

Query a table post, fields username and content are utf8 chinese. Need to convert to big5 to print in windows console. The ENCODE routines redefined, failed to compile. I have another script to test ...
0
votes
1answer
43 views

Scrubyt: Using big5 strings in query_field for fill_textfield

Does anyone know of a way to get fill_textfield to accept a big5-encoded string in the query_field? I keep getting an "unterminated string meets end of file" error with this: require 'rubygems' ...
0
votes
1answer
114 views

Is it possible to use big5 character set in Drupal?

A potential client of ours wants to use the big5 character encoding on their new website. Is it possible to use the Drupal CMS to make a site in big5? Its possible this questions does not make sense ...
0
votes
1answer
348 views

Can I access local images from an iframe inside of a uiwebview?

Basically Im attempting to take a php / jquery / css / html web app that is hosted remotely, and embed it in an iframe inside of a uiwebview in objective c using the big5 framework. I have my iframe ...
0
votes
1answer
60 views

chinese search form in flash

i'm working on a menu with a search field, all this menu is done in flash, on the english side works perfect, you write "dah" and it searches for "dah" but on chinese, you write "餅" it posts "??" ...
0
votes
1answer
424 views

CA2W gave me a “'AtlThrowLastWin32': identifier not found” error

I got a strange compilation error when I followed the MSDN document to use CA2W to convert big5 strings to unicode strings in Visual Studio 2005. This is the code I wrote: #include <string> ...
0
votes
2answers
438 views

any PHP or Ruby library to convert Tranditional Chinese to Simplified Chinese or vice versa?

any PHP or Ruby library to convert Tranditional Chinese to Simplified Chinese or vice versa (Big5 <--> GB)? the iconv library won't do it as it merely convert the encoding -- the glyph stays the ...