微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在kotlin android中用responseInputStream.read编写while循环–while((i = responseInputStream.read(byteContain

这个问题已经在这里有了答案:            >            Best way to translate this java code into kotlin                                    3个
如何在Kotlin Android中使用while循环与responseInputStream.read

my code for while loop in kotlin android

another one

这里添加了while循环.kt时读取的responseInputStream

                val responseInputStream = conn.inputStream
                val responseStringBuffer = StringBuffer()
                val byteContainer = ByteArray(1024)
                var i: Int
                while ((i = responseInputStream.read(byteContainer)) != -1) {
                    responseStringBuffer.append(String(byteContainer, 0, i))
                }
                Log.w("TAG", "res :" + responseStringBuffer.toString())

解决方法:

Kotlin不喜欢Java,您不能在一行中组成多重表达式.您应该将单行表达式分成多行,例如:

while(true){
  val i= responseInputStream.read(byteContainer);

  if(i==-1) break;

  responseStringBuffer.append(String(byteContainer, 0, i))
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐