Kotlin File readText readLines readBytes
文章来源地址https://uudwc.com/A/4r63V
import java.io.File
import java.nio.charset.StandardCharsets
fun main(args: Array<String>) {
val filePath = "./myfile.txt"
val file = File(filePath)
val texts = file.readText()
println(texts)
val lines = file.readLines()
lines.forEach {
println(it)
}
val bytes: ByteArray = file.readBytes()
println(String(bytes, 0, bytes.size, StandardCharsets.UTF_8))
}
Kotlin Files readAllBytes readAllLines readString-CSDN博客Java把一个文件转化为byte字节数组 /** * 把一个文件转化为byte字节数组。try { File..._java文件转byte数组。Java把一个文件转化为byte字节数组_java文件转byte数组_zhangphil的博客-CSDN博客。https://blog.csdn.net/zhangphil/article/details/132763802Kotlin File writeText appendText appendBytes readBytes readText-CSDN博客Java把一个文件转化为byte字节数组 /** * 把一个文件转化为byte字节数组。try { File..._java文件转byte数组。Java把一个文件转化为byte字节数组_java文件转byte数组_zhangphil的博客-CSDN博客。Kotlin Files readAllBytes readAllLines readString-CSDN博客。https://blog.csdn.net/zhangphil/article/details/132766718Kotlin FileInputStream read File-CSDN博客Java把一个文件转化为byte字节数组 /** * 把一个文件转化为byte字节数组。try { File..._java文件转byte数组。Java把一个文件转化为byte字节数组_java文件转byte数组_zhangphil的博客-CSDN博客。Java把一个文件转化为byte字节数组 /** * 把一个文件转化为byte字节数组。try { File..._java文件转byte数组。Java把一个文件转化为byte字节数组_java文件转byte数组_zhangphil的博客-CSDN博客。https://blog.csdn.net/zhangphil/article/details/132764576文章来源:https://uudwc.com/A/4r63V