- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/aliyun-beta/aliyun-jclouds
- 软件文档: https://github.com/aliyun-beta/aliyun-jclouds/blob/master/README.md
- 官方下载: https://github.com/aliyun-beta/aliyun-jclouds/archive/master.zip
软件介绍
aliyun-Jclouds
访问阿里云服务的 Jclouds 组件库
Maven
<dependencies> <dependency> <groupId>io.github.aliyun-beta</groupId> <artifactId>aliyun-ecs</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>io.github.aliyun-beta</groupId> <artifactId>aliyun-oss</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>io.github.aliyun-beta</groupId> <artifactId>aliyun-slb</artifactId> <version>1.0.0</version> </dependency> </dependencies>
Usage
ComputeService
ComputeService computeService; String provider = "aliyun-ecs"; String key = "Your AccessKey"; String secret = "Your AccessKeySecret"; ComputeServiceContext context = ContextBuilder .newBuilder(provider) .credentials(key, secret) .buildView(ComputeServiceContext.class); computeService = context.getComputeService();
BlobStore
BlobStore blobStore; String provider = "aliyun-oss"; String key = "Your AccessKey"; String secret = "Your AccessKeySecret"; BlobStoreContext context = ContextBuilder .newBuilder(provider) .credentials(key, secret) .buildView(BlobStoreContext.class); blobStore = context.getBlobStore();
LoadBalancerService
LoadBalancerService loadBalancerService; String provider = "aliyun-slb"; String key = "Your AccessKey"; String secret = "Your AccessKeySecret"; LoadBalancerServiceContext context = ContextBuilder .newBuilder(provider) .credentials(key, secret) .buildView(LoadBalancerServiceContext.class); loadBalancerService = context.getLoadBalancerService();
Build
mvn package -DskipTests
Swift语言实战入门
伍星、罗飞、刘志华、王浩力、刘蕾 / 人民邮电出版社 / 2014-10-23 / 79
《Swift语言实战入门》以Swift语言的基础知识和实战技巧为主要内容,佐以大量的实例和图片进行讲解。全书内容分为三大部分,共11章节。第一大部分讲述Swift语言的基础知识和语法,第二大部分讲解开发框架和库的相关内容,第三大部分集中讲解以2048游戏为例的实战演练,从入门到实战层层递进。本书注重实战,秉承着学以致用的原则,让读者真正看后能够实际操作。120个代码清单全部共享,配套教学视频在线收......一起来看看 《Swift语言实战入门》 这本书的介绍吧!
JS 压缩/解压工具
在线压缩/解压 JS 代码
URL 编码/解码
URL 编码/解码
