Re: Problems with writing EUC-JP/Unicode to console or file

Поиск
Список
Период
Сортировка
От Csaba Nagy
Тема Re: Problems with writing EUC-JP/Unicode to console or file
Дата
Msg-id 1056361820.24537.11.camel@coppola.ecircle.de
обсуждение исходный текст
Ответ на Re: Problems with writing EUC-JP/Unicode to console or file  (Jean-Christian Imbeault <jc@mega-bucks.co.jp>)
Список pgsql-jdbc
I suspect that your machine's default encoding and the encoding used by
your Java program doesn't match. When you write on the web, the browser
knows the correct encoding to use from the HTTP headers (which BTW you
could consult to see what encoding you are writing with). But when you
write a file and read it in a console, the encoding is known only if you
tell it to the programs you use... i.e. explicitly tell to your Java
writer code what encoding to use, and explicitly tell to the editor what
encoding to use when opening the file. Otherwise they'll use their
default encodings, which might not match.

Cheers,
Csaba.


On Mon, 2003-06-23 at 11:36, Jean-Christian Imbeault wrote:
> Csaba Nagy wrote:
> > This sounds like your terminal can't display that character.
>
> Hum ... good idea. But I don't think this is the problem in my case as I
> am using the japanese version of Windows 2000.
>
> Also if I hard-coded the string to be written then it is displayed fine
> on the console or in the file, like this:
>
> String string = "ー";
> System.out.println(string);
>
> The above code prints out fine.
>
> But if 'string' is gotten from the database it does not display properly
> when printed out or written to file. But strangely enough it does
> display properly in GUI components.
>
> Maybe the GUI and the OS use different, and incompatible, unicode fonts?
>
> I'm thinking that the unicode byte representation of "ー" in the
> database and does not map to a valid character in the font set that my
> OS uses? That or the code point (is that the right word?) that pg uses
> for this character and is the not the same as Java uses? (I remember
> some talk about the unicode translation being moved from the driver to
> the back end and some changes in the translation tables or something
> like that?)
>
> I'm really at a loss here and any advice on what I can do to find the
> root cause and hopefully a fix for this are very much appreciated as my
> application depends on being able to write this character to file.
>
> Thanks!
>
> Jean-Christian Imbeault
>



В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Paul Thomas
Дата:
Сообщение: Re: OODBMS - PostgreSql
Следующее
От: Jean-Christian Imbeault
Дата:
Сообщение: Re: Problems with writing EUC-JP/Unicode to console or file