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可以这样初始化吗?我觉得是这里出了问题。
求助!!!!需要查看源码的请留下邮箱!
这样是找不到baidu.xml的,你可以把它放raw文件夹下,或者在软件初始化的时候先将这个文件写到手机本地存储卡上。
1、楼主没搞过android开发吧
2、看exception就知道问题在哪里了,问问组内的android开发,问题不大,分分钟的事情
建议题主花几分钟了解一下 android 的包结构,你的异常信息是找不到 xml 文件。题主的包中 baidu.xml 放在了 src 的 resource 文件下,但是对于 android 程序来说,除非你在 gradle 配置中指定,否则资源文件夹名应该叫做 res。另外建议题主换成 android studio 开发 android.