如何在 Kotlin 中将字节转换为位串?
How to convert a Byte to a Bitstring in Kotlin?
我有一个字节数组列表。首先,当我打印它们时我看到整数?第二件事是,我想将每个字节转换为位串并将其添加到新的位串列表中。我该怎么做,因为没有“i.toBitString”?
fun preprocessing() {
val userInput = readLine()
val charset = Charsets.UTF_8
val bytearray = userInput?.toByteArray()
var bitsets = ArrayList<BitSet>()
if (bytearray != null) {
// for(i in bytearray){
// bitsets.add(i.toBitset?)}
}
}
预处理()
您可以使用此方法转换为任何基数,在您的情况下这应该有效:
val userInput = "potatoes"
val bytearray = userInput.toByteArray(Charsets.UTF_8)
val bitsets = ArrayList<String>()
for (i in bytearray) {
bitsets.add(i.toString(2))
}
bitsets.forEach { println(it) }
这是文档:
/**
* Returns a string representation of this [Byte] value in the specified [radix].
*
* @throws IllegalArgumentException when [radix] is not a valid radix for number to string conversion.
*/
@SinceKotlin("1.1")
@kotlin.internal.InlineOnly
public actual inline fun Byte.toString(radix: Int): String = this.toInt().toString(checkRadix(radix))
我有一个字节数组列表。首先,当我打印它们时我看到整数?第二件事是,我想将每个字节转换为位串并将其添加到新的位串列表中。我该怎么做,因为没有“i.toBitString”?
fun preprocessing() {
val userInput = readLine()
val charset = Charsets.UTF_8
val bytearray = userInput?.toByteArray()
var bitsets = ArrayList<BitSet>()
if (bytearray != null) {
// for(i in bytearray){
// bitsets.add(i.toBitset?)}
}
}
预处理()
您可以使用此方法转换为任何基数,在您的情况下这应该有效:
val userInput = "potatoes"
val bytearray = userInput.toByteArray(Charsets.UTF_8)
val bitsets = ArrayList<String>()
for (i in bytearray) {
bitsets.add(i.toString(2))
}
bitsets.forEach { println(it) }
这是文档:
/**
* Returns a string representation of this [Byte] value in the specified [radix].
*
* @throws IllegalArgumentException when [radix] is not a valid radix for number to string conversion.
*/
@SinceKotlin("1.1")
@kotlin.internal.InlineOnly
public actual inline fun Byte.toString(radix: Int): String = this.toInt().toString(checkRadix(radix))