java 如何为手机创建一个扩展名为 .JAR 的应用程序?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/2740862/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
how can I create an application for mobile phone with .JAR extension?
提问by the0roamer
I Want to create a photo dictionary with .jar extension for mobile phones,what is the right tool or language for this purpose ?
我想为手机创建一个带有 .jar 扩展名的照片词典,为此目的合适的工具或语言是什么?
回答by aioobe
I suspect that you would want to write a so called MIDletusing Java ME.
The proper tools include
合适的工具包括
- The Java SDK
- Eclipse together with a proper plugin such as EclipseME(or another compliant IDE)
- The Sun Wireless Toolkit (WTK)which among other things contains an emulator)
- 在的Java SDK
- Eclipse 与适当的插件,例如EclipseME(或其他兼容的 IDE)
- Sun Wireless Toolkit (WTK),其中包含一个模拟器)
A good step-by-step introduction to writing your first MIDlet can be found here:
可以在此处找到编写第一个 MIDlet 的良好分步介绍:

