# 鸿蒙 **Repository Path**: donghahi/hongmeng ## Basic Information - **Project Name**: 鸿蒙 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-26 - **Last Updated**: 2024-07-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## fs 读取文件 ```c // getRawFileContent 直接获取文件中的内容 // data.json 文件名 this.context.resourceManager.getRawFileContent('data.json',(err,file)=>{ // TextDecoder 实现解码获取数据 const text = util.TextDecoder.create('utf-8') const txt = text.decodeWithStream(file) console.log(txt) // 打印文件中的内容 }) ```