找不到 Gson 模块 Blackberry Java 应用程序
我正在为 Blackberry 开发一个简单的应用程序,并使用 Google 的 gson 从服务器检索一些数据。
UI 工作正常,但当我添加 gson 部分时,它开始失败,无法运行。
当我在模拟器中运行该应用程序时,它显示此错误:“Uncaught:RuntimeException”在令人讨厌的死亡白屏上,按住单击按钮后,我可以看到有一个警告对话框,上面写着“模块'gson-1.4'不成立”。
不过,我确实在项目属性中添加了“gson-1.4.jar” -> Java 构建路径 ->添加外部 JAR...此外,Gson 对象在我的代码中被识别,在我的代码中没有语法错误。
顺便说一句,我正在使用 Eclipse 和最新的 Blackberry SDK
请帮忙
I'm developing a simple application for Blackberry and i'm using Google's gson to retrieve some data from a server.
The UI was working fine but when I added the gson part it started failing, it wont run.
When I run the application in the simulator it show this error: "Uncaught: RuntimeException" on that annoying white screen of death and after holding the click button I can see that there is an alert dialog that says "Module 'gson-1.4' not found".
However I did added "gson-1.4.jar" in the Project's Properties -> Java Build Path -> Add External JARs... also, the Gson objects are recognized at my code, no syntax errors at my code.
BTW, I'm using Eclipse and the most recent Blackberry SDK
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Gson 是围绕反射和其他 J2ME 上不存在的东西创建的,而 Blackberry API 正是基于 J2ME。
所以,遗憾的是黑莓没有 Gson。
Gson is created around Reflection and other stuff that is not present on J2ME, wich the Blackberry API is based on.
So, sadly no Gson for Blackberry.