HarmonyOS 鸿蒙Next 如何查看在线和本地的word、excel等文件
HarmonyOS 鸿蒙Next 如何查看在线和本地的word、excel等文件
如何查看在线和本地的word、excel等文件
2 回复
目前可以实现预览的文件后缀是;pdf、doc、docx、xls、xlsx、ppt、pptx
可参考以下demo:
import common from '[@ohos](/user/ohos).app.ability.common';
import fs from '[@ohos](/user/ohos).file.fs';
import { filePreview } from '[@kit](/user/kit).PreviewKit';
import { BusinessError } from '[@kit](/user/kit).BasicServicesKit';
import fileUri from '[@ohos](/user/ohos).file.fileuri';
let context = getContext(this) as common.UIAbilityContext;
let uiContext = getContext(this);
let fileInfo: filePreview.PreviewInfo = {
// 文件预览信息,包含了文件标题名、uri以及文件类型(mimeType)
title: '1.xls',
// title: '蓝牙ble 模式的demo使用说明1.pdf',
// uri: 'file://com.lvhui.myapplication/data/storage/el2/base/haps/entry/files/蓝牙ble 模式的demo使用说明1.pdf',
uri: 'file://com.lvhui.myapplication/data/storage/el2/base/haps/entry/files/1.xls',
// mimeType: 'application/pdf' // 文件(夹)的媒体资源类型,如text/plain
mimeType: 'application/vnd.ms-excel' // 文件(夹)的媒体资源类型,如text/plain
};
function copyFile() {
console.log("copyFile!")
// let srcFileDescriptor = context.resourceManager.getRawFdSync('蓝牙ble 模式的demo使用说明1.pdf');
let srcFileDescriptor = context.resourceManager.getRawFdSync('1.xls');
//这里填rawfile文件夹下的文件名(包括后缀)
let stat = fs.statSync(srcFileDescriptor.fd)
console.log(`stat isFile:${stat.isFile()}`);
// 通过UIAbilityContext获取沙箱地址filesDir,以Stage模型为例
let pathDir = context.filesDir;
console.log("path:", pathDir)
// let dstPath = pathDir + "/蓝牙ble 模式的demo使用说明1.pdf";
let dstPath = pathDir + "/1.xls";
let dest = fs.openSync(dstPath, fs.OpenMode.CREATE | fs.OpenMode.READ_WRITE)
let bufsize = 4096
let buf = new ArrayBuffer(bufsize)
let off = 0, len = 0, readedLen = 0
while (len = fs.readSync(srcFileDescriptor.fd, buf, { offset: srcFileDescriptor.offset + off, length: bufsize })) {
readedLen += len
fs.writeSync(dest.fd, buf, { offset: off, length: len })
off = off + len
if ((srcFileDescriptor.length - readedLen) < bufsize) {
bufsize = srcFileDescriptor.length - readedLen
}
}
fs.close(dest.fd)
}
[@Entry](/user/Entry)
[@Component](/user/Component)
struct Index {
[@State](/user/State) message: string = '预览文件';
build() {
Row() {
Column() {
Button('传到沙箱')
.onClick(()=>{
copyFile()
})
Button(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
.onClick(() => {
filePreview.openPreview(uiContext, fileInfo).then(() => {
console.info('openPreview success');
}).catch((err: BusinessError) => {
console.error('openPreview failed, err = ' + err.message);
});
})
}
.width('100%')
}
.height('100%')
}
}
更多关于HarmonyOS 鸿蒙Next 如何查看在线和本地的word、excel等文件的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
在HarmonyOS鸿蒙Next系统中查看在线和本地的Word、Excel等文件,可按照以下方法操作:
查看本地文件
- 确保应用支持:设备上需安装支持Word、Excel文件的应用程序,如WPS Office等。
- 文件访问:利用FilePicker等相关API,访问已下载的Word、Excel文件。在文件管理器或应用中,定位并选择该文件。
- 文件打开:点击文件,选择已安装的WPS Office或其他支持的应用程序打开文件。
查看在线文件
- 检查网络连接:确保设备已连接到互联网,且网络稳定。
- 文件格式支持:确认设备或应用是否支持打开目标文件的格式。
- URL正确性:检查文件URL是否正确,确保没有拼写错误或路径错误。
- 系统更新:确保HarmonyOS系统为最新版本,系统更新可能包含对此类问题的修复。
如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html 。