我正在处理一个项目,在这个项目中,我需要使用gomobile工具从Golang代码库生成一个APK文件。计划是能够在Android平板电脑上运行它。当我在平板电脑上安装apk文件时,通过安卓工作室,我收到以下错误。 E/Go: panic: open C:/Users/ash/OneDrive/Desktop/go-workSpace/src/Myproject/config.json: no such file or directory但是,在单击错误消息中的给定路径后,Android 工作室会打开它要查找的文件(配置.json)这是我在Go中的源代码exDir := "C:/Users/ash/OneDrive/Desktop/go-workSpace/src/Myproject/" configFile, err := ioutil.ReadFile(filepath.Join(filepath.Dir(exDir), "config.json")) // Look for the config file in the same directory as the executable Check(err)func Check(err error) { if err != nil { fmt.Println("Received generic error, panicking") fmt.Println(err) panic(err) }}任何建议如何修复文件路径?
添加回答
举报
0/150
提交
取消