System.currentTimeMillis()
返回一个Long
所以toByteArray
必须Long
像这样实现:
fun Long.toByteArray(): ByteArray {
val result = ByteArray(8)
result[7] = (this and 0xFF).toByte()
result[6] = ((this ushr 8) and 0xFF).toByte()
result[5] = ((this ushr 16) and 0xFF).toByte()
result[4] = ((this ushr 24) and 0xFF).toByte()
result[3] = ((this ushr 32) and 0xFF).toByte()
result[2] = ((this ushr 40) and 0xFF).toByte()
result[1] = ((this ushr 48) and 0xFF).toByte()
result[0] = ((this ushr 56) and 0xFF).toByte()
return result
}
如果您需要这个用于无符号字节,请使用:
fun Long.toByteArray(): UByteArray {
val result = UByteArray(8)
result[7] = (this and 0xFF).toUByte()
result[6] = ((this ushr 8) and 0xFF).toUByte()
result[5] = ((this ushr 16) and 0xFF).toUByte()
result[4] = ((this ushr 24) and 0xFF).toUByte()
result[3] = ((this ushr 32) and 0xFF).toUByte()
result[2] = ((this ushr 40) and 0xFF).toUByte()
result[1] = ((this ushr 48) and 0xFF).toUByte()
result[0] = ((this ushr 56) and 0xFF).toUByte()
return result
}
这可以像下面的例子一样使用:
fun main() {
val timeUTC = System.currentTimeMillis().toByteArray()
println(timeUTC.map { byte -> byte.toString(16).toUpperCase() }.joinToString(""))
}