我遵循scala代码将(short,int,long,float,double,bigint)转换为字节数组。
def getByteArray(value: Any, of_type: String) = {
of_type match {
case "short" => ByteBuffer.allocate(2).putShort(value.asInstanceOf[Short]).array()
case "int" => ByteBuffer.allocate(4).putInt(value.asInstanceOf[Int]).array()
case "long" => ByteBuffer.allocate(8).putLong(value.asInstanceOf[Long]).array()
case "float" => ByteBuffer.allocate(4).putFloat(value.asInstanceOf[Float]).array()
case "double" => ByteBuffer.allocate(8).putDouble(value.asInstanceOf[Double]).array()
case "bigint" => BigInt(value.toString).toByteArray
}
}
这一切都需要吗?我是否需要在最后调用任何清理方法clear()
,mark()
,reset()
以确保没有ByteBuffer泄漏
当我使用allocateDirect
方法时,它会抛出异常。那么,这是否意味着allocateDirect
方法没有后备数组?
线程“main”java.lang.UnsupportedOperationException中的异常 在java.nio.ByteBuffer.array(ByteBuffer.java:994)
答案 0 :(得分:1)