Quantcast
Channel: Ignite Realtime: Message List
Viewing all articles
Browse latest Browse all 12162

Re: Why the openfire console has garbled ?The local language is chinese simplified

$
0
0

This is the source code, I hope it can help you understand why garbled


InputStream in = openfired.getInputStream();

int c;

((c = in.read()) != -1) {

try {

      StyleConstants.setFontFamily(styles, "courier new");

      pane.getDocument().insertString(pane.getDocument().getLength(),

       "" + (char)c, styles);

     }

  catch (BadLocationException e) {

  // Ignore.

   }

  }

in.close();


Viewing all articles
Browse latest Browse all 12162

Trending Articles