0

更新:我更新了一些日志输入,而不是你的帮助。

我正在应用以下代码:

@Override
public void run() {

     byte[] bytes = null;

     int TIMEOUT = 5000;

     int status = connection.bulkTransfer(ep, bytes, ep.getMaxPacketSize(), TIMEOUT);

     Log.d(TAG, "status: " + status);

     write_to_screen( bytes );

}

public void write_to_screen( byte[] bytes  ) {

    Log.d(TAG, "bytes: " + bytes);

    String str_non_final = null;

    try {

        str_non_final = new String( bytes, "UTF-8");
        Log.d(TAG, "str_non_final : " + str_non_final );

    } catch (UnsupportedEncodingException e) {

        e.printStackTrace();

    }   

    final String str = str_non_final;

    Log.d(TAG, "str: " + str);

    runOnUiThread(new Runnable() {@Override public void run()
    {
       textView7.setText( str );
       Log.d(TAG, "UI updated");
    }
    });

}   

logcat的结果如下:

D/EthernetActivity(15721):打开成功

D/EthernetActivity(15721):状态:-1

D/EthernetActivity(15721):字节:空

所以在我看来,问题出在“str_non_final = new String(bytes, "UTF-8");”中。这有什么问题?

4

1 回答 1

1

在这份声明中

str_non_final = new String( bytes, "UTF-8");

您正在使用字节,并且在您的 logcat 中打印为空。所以它会抛出,NullPointerException而你的捕获只能处理UnsupportedEncodingException

确保bytes在调用之前不应该为空

write_to_screen( bytes );
于 2013-03-05T11:06:42.317 回答