Java ME SDK 3.0

1. eclipse3.3

2. sun_java_me_sdk-3_0_win.exe  到SUN官网上下

3. eclipseme.feature_1.7.9_site.zip  http://eclipseme.org/

 

 

 

Java ME Platform SDK is a state-of-the-art toolbox for developing mobile applications. It provides device emulation, a standalone development environment, and a set of utilities for rapid development of Java ME applications.

On Windows, Java ME SDK 3.0 is the successor to the popular Java Wireless Toolkit 2.5.2 and Java Toolkit 1.0 for CDC. It integrates CLDC, CDC and Blu-ray Disc Java (BD-J) technology into one SDK.

Java ME Platform SDK includes the advanced tools found in Java Wireless Toolkit 2.5.2 [for CLDC] and Sun Java Toolkit 1.0 [for CDC]. The expanded emulation capability includes over-the-air (OTA) emulation and supports the push registry, GPS, sensors, and many more new features.

System Requirements

This section lists minimum hardware and software requirements for installation on your PC. BD-J software requirements and the device environment requirements can be addressed as necessary after the installation.

Minimum Hardware
  • 300-350 MB hard disk space
  • 1 GB system RAM
  • 1 GHz Pentium CPU
Required Software

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Tencent Cloud SDK 3.0 for Java是腾讯云官方提供的Java版本SDK,用于访问腾讯云的各种服务。以下是使用步骤: 1. 下载SDK 可以从腾讯云官网或者GitHub上下载SDK。 2. 导入SDK 将下载的SDK导入你的Java项目中。 3. 配置SecretId和SecretKey 在使用SDK之前,需要先在腾讯云控制台获取Access Key ID(SecretId)和Secret Key(SecretKey),并在代码中配置。 ```java // 导入SDK import com.tencentcloudapi.common.Credential; import com.tencentcloudapi.common.profile.ClientProfile; import com.tencentcloudapi.common.profile.HttpProfile; import com.tencentcloudapi.common.profile.Language; import com.tencentcloudapi.common.exception.TencentCloudSDKException; // 配置SecretId和SecretKey String secretId = "your_secret_id"; String secretKey = "your_secret_key"; Credential cred = new Credential(secretId, secretKey); ``` 4. 创建API客户端对象 根据需要访问的腾讯云服务的API文档,创建相应的API客户端对象。 ```java // 导入SDK import com.tencentcloudapi.cvm.v20170312.CvmClient; import com.tencentcloudapi.cvm.v20170312.models.*; // 创建CVM客户端 // HttpProfile是HTTP选项类,用于设置HTTP选项,比如超时时间、代理等。 // ClientProfile是客户端选项类,用于设置客户端选项,比如语言、调试模式等。 HttpProfile httpProfile = new HttpProfile(); httpProfile.setEndpoint("cvm.tencentcloudapi.com"); ClientProfile clientProfile = new ClientProfile(); clientProfile.setHttpProfile(httpProfile); CvmClient client = new CvmClient(cred, "", clientProfile); ``` 5. 调用API 根据所创建的API客户端对象,调用相应的API操作。 ```java // 导入SDK import com.tencentcloudapi.cvm.v20170312.models.DescribeInstancesRequest; import com.tencentcloudapi.cvm.v20170312.models.DescribeInstancesResponse; // 调用DescribeInstances API DescribeInstancesRequest req = new DescribeInstancesRequest(); DescribeInstancesResponse resp = client.DescribeInstances(req); System.out.println(DescribeInstancesResponse.toJsonString(resp)); ``` 以上是使用Tencent Cloud SDK 3.0 for Java的基本步骤,具体使用方法可以参考官方文档。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值