Author Topic: Java op is not support Korean?  (Read 4440 times)

0 Members and 1 Guest are viewing this topic.

Offline Korean

  • Newbie
  • *
  • Posts: 3
    • View Profile
Java op is not support Korean?
« on: February 14, 2008, 05:55:27 am »
hi.  :)
i'm from Korea.
Java op is not support Korean alphabet?
it is 2byte

image link:
http://img337.imageshack.us/img337/2246/k2he5.jpg
« Last Edit: February 14, 2008, 06:06:55 am by Korean »

Offline Camel

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
    • BNU Bot
Re: Java op is not support Korean?
« Reply #1 on: February 14, 2008, 01:10:43 pm »
Looks like a UTF8 encoding issue.

Dealing with encoding in Java sucks a lot. It tries to auto-convert in the new String(byte[]) constructor, but it won't take a hint as to what it's encoded as, which makes it very difficult to work around.

<Camel> i said what what
<Blaze> in the butt
<Camel> you want to do it in my butt?
<Blaze> in my butt
<Camel> let's do it in the butt
<Blaze> Okay!

Offline Joe

  • B&
  • Moderator
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Java op is not support Korean?
« Reply #2 on: February 14, 2008, 01:40:02 pm »
And on top of that, none of us have any clue what Korean is supposed to look like. Well, maybe Ergot knows.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline topaz~

  • Full Member
  • ***
  • Posts: 292
    • View Profile
Re: Java op is not support Korean?
« Reply #3 on: February 14, 2008, 06:00:21 pm »
And on top of that, none of us have any clue what Korean is supposed to look like. Well, maybe Ergot knows.
If you open the link that the poster supplied, you will see some Korean.

Offline Camel

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
    • BNU Bot
Re: Java op is not support Korean?
« Reply #4 on: February 14, 2008, 06:50:45 pm »
And on top of that, none of us have any clue what Korean is supposed to look like. Well, maybe Ergot knows.
If you open the link that the poster supplied, you will see some Korean.
Five characters is hardly enough to take on such a large endeavor.

<Camel> i said what what
<Blaze> in the butt
<Camel> you want to do it in my butt?
<Blaze> in my butt
<Camel> let's do it in the butt
<Blaze> Okay!

Offline Joe

  • B&
  • Moderator
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Java op is not support Korean?
« Reply #5 on: February 14, 2008, 07:35:59 pm »
And on top of that, none of us have any clue what Korean is supposed to look like. Well, maybe Ergot knows.

If you open the link that the poster supplied, you will see some Korean.

Are you sure? I gathered from what the guy said that that's a picture of what Korean -doesn't- look like.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Blaze

  • x86
  • Hero Member
  • *****
  • Posts: 7136
  • Canadian
    • View Profile
    • Maide
Re: Java op is not support Korean?
« Reply #6 on: February 14, 2008, 10:31:48 pm »
And on top of that, none of us have any clue what Korean is supposed to look like. Well, maybe Ergot knows.

If you open the link that the poster supplied, you will see some Korean.

Are you sure? I gathered from what the guy said that that's a picture of what Korean -doesn't- look like.

The text from the left is from inside the actual StarCraft client, and the one on the right is what the bot shows, or at least that's what I gathered.
And like a fool I believed myself, and thought I was somebody else...

Offline topaz~

  • Full Member
  • ***
  • Posts: 292
    • View Profile
Re: Java op is not support Korean?
« Reply #7 on: February 14, 2008, 11:04:04 pm »
Five characters is hardly enough to take on such a large endeavor.
From what I understand, Korean is composed of an alphabet much like English. It is not similar to Chinese, where there is an uncountable number of characters available in the dictionary.

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Java op is not support Korean?
« Reply #8 on: February 14, 2008, 11:23:51 pm »
Actually, there are about 80,000 hanzi characters.

Offline Korean

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Java op is not support Korean?
« Reply #9 on: February 19, 2008, 09:11:44 am »
aha. UTF8-encoding issue?   :(
i want UTF8-encoding bug fix..
can't fix UTF8-encofing bug ?  :(
« Last Edit: February 19, 2008, 09:16:55 am by Korean »

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Java op is not support Korean?
« Reply #10 on: February 19, 2008, 09:19:44 am »
Looks like a UTF8 encoding issue.

Dealing with encoding in Java sucks a lot. It tries to auto-convert in the new String(byte[]) constructor, but it won't take a hint as to what it's encoded as, which makes it very difficult to work around.
So.. any suggestions?

Offline Camel

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
    • BNU Bot
Re: Java op is not support Korean?
« Reply #11 on: February 21, 2008, 07:40:40 pm »
There's some undocumented conversion utilities that are part of the JDK; you might try starting there.

<Camel> i said what what
<Blaze> in the butt
<Camel> you want to do it in my butt?
<Blaze> in my butt
<Camel> let's do it in the butt
<Blaze> Okay!