中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何读取文件内容并打印?
微信扫码分享
import { common } from '@kit.AbilityKit'; import fs from '@ohos.file.fs'; import { BusinessError } from '@kit.BasicServicesKit'; import buffer from '@ohos.buffer'; @Entry @Component struct Index { private context = getContext(this) as common.UIAbilityContext; build() { Row() { Column() { Text("Hello") .fontSize(50) .fontWeight(FontWeight.Bold) .onClick(() => { let applicationContext = this.context.getApplicationContext(); let cacheDir = applicationContext.cacheDir; let dirPath = cacheDir + "/aaa"; fs.open(dirPath, fs.OpenMode.CREATE | fs.OpenMode.READ_WRITE).then((file: fs.File) => { let arrayBuffer = new ArrayBuffer(4096); fs.read(file.fd,arrayBuffer, (err: BusinessError, readLen: number) => { if (err) { console.error("read failed with error message: " + err.message + ", error code: " + err.code); } else { console.info("read file data succeed"); let buf = buffer.from(arrayBuffer, 0, readLen); console.info(`The content of file: ${buf.toString()}`); } fs.closeSync(file); }) }) }) } .width('100%') } .height('100%') } }