8

次の BufferedReader が入力を byte[] に直接入れることができる可能性はありますか?

public static Runnable reader() throws IOException {
    Log.e("Communication", "reader");
    din = new DataInputStream(sock.getInputStream());
    brdr = new BufferedReader(new InputStreamReader(din), 300);
    boolean done = false;
    while (!done) {
       try {
       char[] buffer = new char[200];
           int length = brdr.read(buffer, 0, 200);
           String message = new String(buffer, 0, length);
           btrar = message.getBytes("ISO-8859-1");                      
           int i=0;
           for (int counter = 0; counter < message.length(); counter++) {
              i++;  
              System.out.println(btrar[counter] + " = " + " btrar "  + i);
           }
    ...

それは読者の一部です、plsは見てください。

btrarに直接入力したいのですが、

4

1 に答える 1

27

次の BufferedReader が入力を byte[] に直接入れることができる可能性はありますか?

Anyは、バイトではなく文字Readerを読み取れるように設計されています。バイナリ データを読み取るには、必要に応じて- を使用してバッファリングします。InputStreamBufferedInputStream

何をしようとしているのかは明確ではありませんが、次のようなものを使用できます。

BufferedInputStream input = new BufferedInputStream(sock.getInputStream());
while (!done) {
    // TODO: Rename btrar to something more meaningful
    int bytesRead = input.read(btrar);
    // Do something with the data...
}
于 2013-02-27T08:16:08.297 に答える