Maison > Questions et réponses > le corps du texte
java项目运行结果:
百度翻译引擎示例:Baidu translation engine example
android项目:
运行结果:
org.springframework.beans.factory.BeanDefinitionStoreException:
IOException parsing XML document from file [/src/resource/baidu.xml]; nested exception is java.io.FileNotFoundException: src/resource/baidu.xml: open failed: ENOENT (No such file or directory)a
public static String translateToEn(String q) throws Exception{
ApplicationContext container=new FileSystemXmlApplicationContext("src/resource/baidu.xml");
...略
}
在android中applicationContext可以这样初始化吗?我觉得是这里出了问题。
求助!!!!需要查看源码的请留下邮箱!
高洛峰2017-04-17 17:34:49
建议题主花几分钟了解一下 android 的包结构,你的异常信息是找不到 xml 文件。题主的包中 baidu.xml 放在了 src 的 resource 文件下,但是对于 android 程序来说,除非你在 gradle 配置中指定,否则资源文件夹名应该叫做 res。另外建议题主换成 android studio 开发 android.