用于 J2ME 移动开发的 Java
我正计划开始一些Java手机开发。我下载了无线工具包,但它要求 Java SE SDK。我已经到达此页面 - http://java.sun.com/javase/downloads /index_jdk5.jsp。 JDK 就是 SDK 吗?它们代表什么?在该页面上,我认为我需要下载“JDK 5.0 with Java EE”。 Java EE 对我有什么作用?如果不重要的话可以只下载我需要的吗?
另外,有这方面的好的教程吗? (我使用的是windows)
I am planning to start some Java mobile phone development. I downloaded the wireless toolkit, but it asks for the Java SE SDK. I have got to this page - http://java.sun.com/javase/downloads/index_jdk5.jsp. Is a JDK the smae as an SDK? what do they stand for? On the page I think I will need to download the "JDK 5.0 with Java EE". What does the Java EE do for me? If it is unimportant, is it possible to just download what I need?
Also, are there any good tutorials for this? (I am using windows)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JDK = Java 开发工具包。它是Java SDK(软件开发工具包)。一且相同。将来您可能会看到令人困惑的一件事是 JRE——Java 运行时环境。这就是非程序员在他们的机器上运行 Java 所需的全部内容。但开发人员需要 SDK。
您可能不需要 Java EE。主要用于网络开发。
就个人而言,除非您热衷于进行 Blackberry 开发,否则如果您想做 Java 移动开发,我建议您研究一下 Google 的 改为 Android。
JDK = Java Development Kit. It's the Java SDK (software development kit). One and the same. One thing you may see in the future that is confusing is the JRE - the Java runtime environment. This is all a non-programmer would need to run Java on their machine. But a developer would need the SDK.
You probably don't need Java EE. That is used mainly for web development.
Personally, unless you are keen on doing Blackberry development, if you want to do Java mobile development I would recommend looking into Google's Android instead.
如果您使用 J2ME 3.0,那么这里有一些要求:
Java SE 开发套件 - JDK 1.6 或更高版本
因此,SDK 就是 SE 开发套件。
如果您使用的是 Wireless toolkit 2.2,则要求如下:
JavaTM 2 SDK,标准版 (J2SE SDK),版本 1.4.2 - 如果您计划进行实际开发,或 JavaTM 2,标准版运行时环境 (JRE),版本 1.4.2 - 如果您打算进行实际开发仅计划运行演示应用程序。
您不需要 Java EE,除非您正在编写一些在服务器端运行的企业应用程序。
If you are using J2ME 3.0 then here are some requirements:
Java SE Development Kit - JDK 1.6 or higher
So, SDK is SE Development Kit.
If you are using the Wireless toolkit 2.2 then here are the requirements:
JavaTM 2 SDK, Standard Edition (J2SE SDK), version 1.4.2 - if you plan to do actual development, or JavaTM 2, Standard Edition Runtime Environment (JRE), version 1.4.2 - if you only plan to run the demonstration applications.
Java EE you won't need, unless you are writing some enterprise application that runs on the server-side.
NetBeans 可能是用于 J2ME 开发的最佳 IDE。 从这个帖子开始,您应该就可以开始了。
NetBeans is probably the best IDE for J2ME development. Start with this thread and you should be on your way.