Changeset 1893


Ignore:
Timestamp:
2001-02-01T16:40:09+13:00 (23 years ago)
Author:
paynter
Message:

Assume input strings use UTF8 encoding, not Latin1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/phind/client/ResultBox.java

    r1841 r1893  
    225225    String input;
    226226    try {
    227         input = new String(bytes, new String("Latin1"));
     227        input = new String(bytes, new String("UTF8"));
    228228    } catch (Exception e) {
    229229        System.err.println(e);
Note: See TracChangeset for help on using the changeset viewer.