我正在处理一个项目,在这个项目中,我需要使用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)
}
}
任何建议如何修复文件路径?
Smart猫小萌
相关分类