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

相关推荐
__Yvan9 小时前
Kotlin 的 ?.let{} ?: run{} 真的等价于 if-else 吗?
android·开发语言·前端·kotlin
tangweiguo030519879 小时前
Android WorkManager 完整实战教程(含完整文件)
android·kotlin
顾道长生'14 小时前
(Arxiv-2026)HiAR:基于分层去噪的高效自回归长视频生成
回归·kotlin·音视频·长视频生成
Kapaseker14 小时前
Compose 中 CompositionLocalProvider 到底是干啥的
android·kotlin
陆业聪1 天前
让 Android 里的 AI 真正「干活」:Function Calling 工程实现全解
android·ai·kotlin
千码君20162 天前
kotlin:函数式参数
java·算法·kotlin
Kapaseker2 天前
Window 内外藏机巧 旧岗新页见真章
android·kotlin
蹦哒2 天前
Kotlin 与 Java 语法差异
java·python·kotlin
Kapaseker3 天前
五分钟搞定 Compose 的打字机效果
android·kotlin
Fate_I_C3 天前
Android现代开发:Kotlin&Jetpack
android·开发语言·kotlin·android jetpack