What is this error: Missing stack map in …?

依然范特西╮ 提交于 2020-01-04 07:35:29

问题


I created lib for my blackberry java app (jar file). But it isn't work. com.myapp.MyManager: Error!: Missing stack map in: getInstance at label: 31 What is this? If i copy package of my lib to my blackberry app, it works well. But I need have lib.


回答1:


You need to preverify the jar file manually. you can do the following to preverify the jar.

execute the following command: 
 preverify -classpath "JDE_PATH_HERE\lib\net_rim_api.jar" "your_jar_filename" 

Read more: http://getablogger.blogspot.com/2009/09/how-to-include-external-jar-file-in.html#ixzz1iTh6g1SF

You can try this link as well .It has instructions on how to do it.



来源:https://stackoverflow.com/questions/8723540/what-is-this-error-missing-stack-map-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!