Kotlin 썸네일형 리스트형 Long to ByteArray Extension import java.nio.ByteBuffer fun Long.toByteArray(): ByteArray { val buffer: ByteBuffer = ByteBuffer.allocate(java.lang.Long.BYTES) buffer.putLong(this) return buffer.array() } 이전 1 다음