importRNFSfrom'react-native-fs';// 引入模块// 自动获取设备的一个文件夹路径,在路径下找这个文件名(有就直接写,没有就自动创建)const filePath =RNFS.DocumentDirectoryPath +'/example.json';// 这个是要写入的数据(要转换成json格式)const jsonData ={key:'value'};const jsonString =JSON.stringify(jsonData);// 从上面的路径中写文件RNFS.writeFile(filePath, jsonString,'utf8').then(()=>{// 写入成功
console.log('JSON data has been written to the file.');}).catch((error)=>{// 写入失败
console.error('Error writing to the JSON file:', error);});