通过本文您将了解:
1、应用资源resources目录和应用沙箱的概念
2、将应用资源目录rawfile中的文件推送到应用沙箱
@toc
文章开始首先要熟悉两个概念,OpenHarmony应用开发中 应用资源目录中的rawfile目录
和应用沙箱
是什么?
OpenHarmony中应用开发使用的各类资源文件会被放进应用资源目录
中,它在应用源码中长下面这个样子。
应用资源resources目录包括三大类目录,一类为base目录,一类为限定词目录,还有一类就是rawfile目录。
应用资源目录中的rawfile目录特点
参考链接:
https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/resource-categories-and-access.md
onWindowStageCreate(windowStage: window.WindowStage) {
// Main window is created, set main page for this ability
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
globalThis.abilityContext = this.context
//用全局对象获取context类的接口
globalThis.context = this.context
...
}
沙箱与公共路径间文件的复制
来完成的,使用到的API有getRawFd ,还使用到了一些文件管理相关的apiimport fs from '@ohos.file.fs';
@Entry
@Component
struct Index {
@State message: string = 'rawfile_copy_to_sandbox'
//沙箱路径
dir:string = globalThis.abilityContext.filesDir + "/";
//从rawfile中读取input.txt文件,在log中显示
private async readfile_from_rawfile() {
try {
let uint8Array = await globalThis.context.resourceManager.getRawFileContent('rawfile/input.txt');
let str = String.fromCharCode.apply(null, new Uint8Array(uint8Array.buffer));
console.info("[rawfile_copy_to_sandbox] ———————————————————————————————————————————————————————");
console.info("[rawfile_copy_to_sandbox] rawfile中的input.txt内容为" + str);
} catch (error) {
console.info("[rawfile_copy_to_sandbox] ———————————————————————————————————————————————————————");
console.info("[rawfile_copy_to_sandbox] rawfile中的input.txt内容读取失败" + error);
}
}
//用来拷贝rawfile文件中的input.txt到应用沙箱目录下
private async copy_rawfile__to_sandbox() {
try {
let file = this.dir+"input.txt";
let sss = fs.createStreamSync(file, "w");//没有会创建一个空的input.txt
sss.closeSync();
//获取rawfile下input.txt
globalThis.context.resourceManager.getRawFileDescriptor('rawfile/input.txt',(error, value) => {
if (error != null) { //getRawFileDescriptor运行失败
console.info("[rawfile_copy_to_sandbox] ———————————————————————————————————————————————————————");
console.log("[rawfile_copy_to_sandbox] getRawFileDescriptor api 运行失败: ${error.code}, message: ${error.message}.");
console.log("[rawfile_copy_to_sandbox] 未能成功将rawfile下的input.txt文件拷贝到应用沙箱下 ");
} else { //getRawFileDescriptor运行成功
let fd = value.fd;
fs.copyFileSync(fd, file);
console.info("[rawfile_copy_to_sandbox] ———————————————————————————————————————————————————————");
console.log("[rawfile_copy_to_sandbox] getRawFileDescriptor api 运行成功");
console.log("[rawfile_copy_to_sandbox] 成功将rawfile下的input.txt文件拷贝到应用沙箱下");
}
});
} catch (error) {
console.info("[rawfile_copy_to_sandbox] ———————————————————————————————————————————————————————");
console.info("[rawfile_copy_to_sandbox] getRawFileDescriptor api 运行失败" + error);
console.log("[rawfile_copy_to_sandbox] 未能成功将rawfile下的input.txt文件拷贝到应用沙箱下");
}
}
build() {
Row() {
Column() {
Button(this.message)
.fontSize(25)
.margin({top:0})
.fontWeight(FontWeight.Normal)
.backgroundColor(Color.Green) //设置按钮颜色
.onClick(() => {
console.info("[rawfile_copy_to_sandbox] 沙箱路径是"+ this.dir);
//用来复制rawfile文件中的input.txt到沙箱目录下
//调用的是私有的自定义的copy_rawfile__to_sandbox方法
this.copy_rawfile__to_sandbox();
this.readfile_from_rawfile();
})
}
.width('100%')
}
.height('100%')
}
}
3.2 样例实现效果
日志显示:日志显示rawfile目录下的input.txt成功推送到/data/app/el2/100/base/com.sandbox.rawfile_to_sandbox/haps/entry/files/沙箱路径下
进入设备shell终端
全部0条评论
快来发表一下你的评论吧 !