You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2003/04/09 06:09:53 UTC

DO NOT REPLY [Bug 18837] - [PATCH]StringUtil#getFromUnicode() has a bug

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18837>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18837

[PATCH]StringUtil#getFromUnicode() has a bug

kamoshida.toshiaki@future.co.jp changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|StringUtil#getFromUnicode() |[PATCH]StringUtil#getFromUni
                   |has a bug                   |code() has a bug



------- Additional Comments From kamoshida.toshiaki@future.co.jp  2003-04-09 04:09 -------
I feel, the methods #getFromUnicode() and #getFromUnicodeHigh() don't have to 
do like now,a little difficult.

The easy way to make response is;
return String(string,offset,len*2,"UTF-16BE");
and
return string(string,offset,len*2,"UTF-16LE");

How about it:D?