Kotlin File writeText appendText appendBytes readBytes readText

Kotlin File writeText appendText appendBytes readBytes readText

Kotlin 复制代码
import java.io.File

fun main(args: Array<String>) {
    val filePath = "./myfile.txt"

    val file = File(filePath)

    file.writeText("hello,") //如果原有文件有内容,将完全覆盖。
    file.appendText("world!") //在原文件尾部追加。
    file.appendBytes("2023 year".toByteArray()) //在原文件尾部追加。

    val bytes: ByteArray = file.readBytes()
    println(String(bytes))

    println(file.readText())
}

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/132763802

相关推荐
QING61839 分钟前
Retrofit 与 Ktor 的简介和对比分析 !!!!
网络协议·kotlin·app
QING61843 分钟前
Android LruCache 与 DiskLruCache 深度解析
android·kotlin·app
alexhilton3 小时前
Compose Multiplatform支持热重载(Hot Reload)了
android·kotlin·android jetpack
好奇的菜鸟4 小时前
Scoop + Kotlin 极简开发环境搭建指南
android·开发语言·kotlin
文件夹__iOS5 小时前
使用 Google ML Kit 实现图片文字识别(提取美国驾照信息)
kotlin
XH2767 小时前
kotlin协程详解
前端·kotlin
岸芷漫步9 小时前
MQTT协议分析与应用
kotlin
缘来的精彩11 小时前
Kotlin中实现多线程数据刷新
android·开发语言·kotlin
麋鹿原14 小时前
Moshi三宗罪
android·kotlin
zhangphil17 小时前
Android Coli 3 ImageView load two suit Bitmap thumb and formal,Kotlin(四)
android·kotlin