本文主要是介绍java 后台删除 七牛云 数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
代码如下:
package com.xdx97.backstage;import com.qiniu.common.Zone;
import com.qiniu.http.Response;
import com.qiniu.storage.BucketManager;
import com.qiniu.storage.Configuration;
import com.qiniu.util.Auth;public class Test {public static void main(String[] args) {Auth auth = Auth.create("填写你的AK", "填写你的SK");Configuration config = new Configuration(Zone.autoZone());BucketManager bucketMgr = new BucketManager(auth, config);//指定需要删除的文件,和文件所在的存储空间String bucketName = "xxx";String key = "xxx";try {Response delete = bucketMgr.delete(bucketName, key);delete.close();}catch (Exception e){e.printStackTrace();}System.out.println("结束了");}
}
这篇关于java 后台删除 七牛云 数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!