generated from mingliqiye/lib-tem
- 更新多个工具类的最后修改时间和用户信息 - 移除冗余的 main 函数测试代码 - 优化 ByteUtils 中流处理方法的引用- 为 Collection 扩展大量实用函数,包括转换、获取元素和创建集合实例等 - 引入 SuperStream 替代部分自定义流处理逻辑 - 调整 Spring Boot 自动配置包扫描路径- 修复资源读取时的空指针风险,使用 Kotlin 的 elvis 操作符简化代码
61 lines
1.8 KiB
Kotlin
61 lines
1.8 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-20 11:49:05
|
|
* UpdateUser MingLiPro
|
|
*/
|
|
@file:JvmName("ByteUtils")
|
|
|
|
package com.mingliqiye.utils.bytes
|
|
|
|
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 this.toList().stream().map { a -> String.format("0X%02X", a!!.toInt() and 0xFF) }
|
|
.collect(SuperStream.toList()) as MutableList<String>
|
|
}
|
|
|
|
|
|
fun Char.hexDigitToValue(): Int {
|
|
return when (this) {
|
|
in '0'..'9' -> this - '0'
|
|
in 'A'..'F' -> this - 'A' + 10
|
|
in 'a'..'f' -> this - 'a' + 10
|
|
else -> throw NumberFormatException("Invalid hex character: $this")
|
|
}
|
|
}
|
|
|
|
private fun hexStringToByteArray(string: String): ByteArray {
|
|
return string.hexToByteArray()
|
|
}
|