七牛云添加maven
com.qiniu
qiniu-java-sdk
[7.2.0, 7.2.99]
这可是官方给的jdk,为啥没有api的包,该教程老了,新版本7.20的jar包移除了api的包,如果坚持要用这个包的话,可以下载6.19版本的试试,会发现运行也是会出错的,所以下面采用官方给的2019年2月的新方法:
//构造一个带指定Zone对象的配置类
Configuration cfg = new Configuration(Zone.zone0());
//…其他参数参考类注释
UploadManager uploadManager = new UploadManager(cfg);
//…生成上传凭证,然后准备上传
String accessKey = “your access key”;
String secretKey = “your secret key”;
String bucket = “your bucket name”;
//如果是Windows情况下,格式是 D:\qiniu\test.png
String localFilePath = “/home/qiniu/test.png”;
//默认不指定key的情况下,以文件内容的hash值作为文件名
String key = null;
Auth auth = Auth.create(accessKey, secretKey);
String upToken = auth.uploadToken(bucket);
try {
Response response = uploadManager.put(localFilePath, key, upToken);
//解析上传成功的结果
DefaultPutRet putRet = new Gson().fromJson(response.bodyString(), DefaultPutRet.class);
System.out.println(putRet.key);
System.out.println(putRet.hash);
} catch (QiniuException ex) {
Response r = ex.response;
System.err.println(r.toString());
try {
System.err.println(r.bodyString());
} catch (QiniuException ex2) {
//ignore
}
}
经测试,上传成功