HarmonyOS鸿蒙Next中ArkTS怎么读取整个文件的内容

HarmonyOS鸿蒙Next中ArkTS怎么读取整个文件的内容 ArkTS怎么读取整个文件的内容。文档里,读取的都是部分的,怎么读取整个文件的内容,不要读多。文件多长读多长

3 回复

可以参考

import { BusinessError } from '@kit.BasicServicesKit';
import { fileIo as fs, ReadTextOptions } from '@kit.CoreFileKit';
let filePath = pathDir + "/test.txt";
let readTextOption: ReadTextOptions = {
  offset: 1,
  length: 0,
  encoding: 'utf-8'
};
let stat = fs.statSync(filePath);
readTextOption.length = stat.size;
fs.readText(filePath, readTextOption, (err: BusinessError, str: string) => {
  if (err) {
    console.error("readText failed with error message: " + err.message + ", error code: " + err.code);
  } else {
    console.info("readText succeed:" + str);
  }
});

参考此链接 https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-file-fs-V5#fsreadtext

更多关于HarmonyOS鸿蒙Next中ArkTS怎么读取整个文件的内容的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


在HarmonyOS鸿蒙Next中,使用ArkTS读取整个文件内容可以通过@ohos.file.fs模块实现。首先导入fs模块,然后使用fs.openSync打开文件,获取文件描述符。接着使用fs.readSync读取文件内容,最后使用fs.closeSync关闭文件。以下是一个示例代码:

import fs from '@ohos.file.fs';

function readFileContent(filePath: string): string {
  try {
    const file = fs.openSync(filePath, fs.OpenMode.READ_ONLY);
    const stat = fs.statSync(filePath);
    const buffer = new ArrayBuffer(stat.size);
    fs.readSync(file.fd, buffer);
    fs.closeSync(file.fd);
    return String.fromCharCode.apply(null, new Uint8Array(buffer));
  } catch (error) {
    console.error(\`Failed to read file: \${error.message}\`);
    return '';
  }
}

const filePath = 'path/to/your/file.txt';
const content = readFileContent(filePath);
console.log(content);

该代码首先打开文件,获取文件大小并创建相应大小的缓冲区,然后读取文件内容并转换为字符串返回。

在HarmonyOS鸿蒙Next中使用ArkTS读取整个文件内容,可以通过@ohos.file.fs模块的readText方法实现。首先导入fs模块,然后使用fs.openSync打开文件获取文件描述符,接着调用fs.readText读取文件内容,最后关闭文件。示例代码如下:

import fs from '@ohos.file.fs';

let filePath = 'path/to/your/file.txt';
let fd = fs.openSync(filePath, fs.OpenMode.READ_ONLY);
let content = fs.readText(fd);
fs.closeSync(fd);
console.log(content);

确保文件路径正确且应用具有文件读取权限。

回到顶部