generated from mingliqiye/lib-tem
Some checks failed
Gitea Actions Build / Build (push) Has been cancelled
- 重构 AesUtils.kt,使用 Kotlin 标准库的 encode 和 decode 方法替代自定义实现- 删除 Java 版本的 Base64Utils 类,迁移到 Kotlin 实现 - 重命名 ByteUtil.kt 为 ByteUtils.kt,统一命名风格 - 删除 Java 版本的 CloneUtil 类和 Factory 类,使用 Kotlin 实现 - 新增 Kotlin 版本的 SpringBeanUtils 工具类
50 lines
1.5 KiB
Kotlin
50 lines
1.5 KiB
Kotlin
/*
|
|
* Copyright 2025 mingliqiye
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* ProjectName mingli-utils
|
|
* ModuleName mingli-utils.main
|
|
* CurrentFile ByteUtils.kt
|
|
* LastUpdate 2025-09-14 19:28:38
|
|
* UpdateUser MingLiPro
|
|
*/
|
|
@file:JvmName("ByteUtils")
|
|
|
|
package com.mingliqiye.utils.bytes
|
|
|
|
import com.mingliqiye.utils.collection.Lists
|
|
import com.mingliqiye.utils.stream.SuperStream
|
|
|
|
const val ESC_ASC: Byte = 0x10
|
|
const val ESC_DESC: Byte = 0x1B
|
|
const val ESC_NONE: Byte = 0x00
|
|
const val ESC_START: Byte = 0x01
|
|
const val ESC_END: Byte = 0x02
|
|
const val ESC_ESC: Byte = 0x03
|
|
const val ESC_CONTROL: Byte = 0x04
|
|
const val ESC_DATA: Byte = 0x05
|
|
const val ESC_RESERVED: Byte = 0x06
|
|
|
|
|
|
/**
|
|
* 将字节数组转换为十六进制字符串列表
|
|
* @return 包含每个字节对应十六进制字符串的列表
|
|
*/
|
|
fun ByteArray.getByteArrayString(): MutableList<String> {
|
|
return Lists.toList(this)!!.stream()
|
|
.map { a -> String.format("0X%02X", a!!.toInt() and 0xFF) }
|
|
.collect(SuperStream.Collectors.toList())
|
|
}
|
|
|