码迷,mamicode.com
首页 > 编程语言 > 详细

七牛云- Java 端 使用

时间:2016-06-27 17:11:46      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:

项目 中需要把 图片放到 图片服务器上托管, 所以使用了七牛, 注册之后每个月 有免费100 万 次get请求,先说说怎么使用:

 1 、注册, 获取自己的AK,SK

技术分享

2. 在自己的项目里引入 我用的 maven ()

技术分享

 

 

 

 

 

 

这里是源码, 源码我们下载没用, 主要是下了jar 包, 然后引入到pom

技术分享

 

 

技术分享

 

基本ok 了, 以下 就是使用。

 

 

 

 

 

 

package cn.ycmedia.controller;

import java.io.File;
import java.io.IOException;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import com.qiniu.common.QiniuException;
import com.qiniu.http.Response;
import com.qiniu.storage.UploadManager;
import com.qiniu.util.Auth;

/**
 * @author 朱良兴
 * 七牛 图片服务器 操作展示层
 *
 */
@RestController
public class QiniuImgController {
    
     UploadManager um = new UploadManager();
     public static final String  AK="rzPOFiue_68j1lOwApPw4qjSxf8BkXB1CGJF6R6j";
     public static final String  SK="TMqFfkz-2ASmgpk051gqPOx-sRdwvZHgbZAmwQ0g";
     Auth auth = Auth.create(AK, SK);
    
    /**
     * @param fileName 文件价地址
     * @param dirBundle 文件目录
     * @return
     * @throws Exception 
     */
     @RequestMapping(value = "upload", method = RequestMethod.GET)
    public String uploadImgFile(@RequestParam("fileName")String  fileName,
            @RequestParam("dirBundle")String  dirBundle) throws Exception{
           String token =auth.uploadToken(dirBundle);
           showAllFiles(new File(fileName),token);
           return null;
    }
     

     public void upload(String filePath ,String token) throws IOException{
            try {
              //调用put方法上传
              Response res = um.put(filePath, null,token);
              //打印返回的信息
              System.out.println(res.bodyString()); 
              } catch (QiniuException e) {
                  Response r = e.response;
                  // 请求失败时打印的异常的信息
                  System.out.println(r.toString());
                  try {
                      //响应的文本信息
                    System.out.println(r.bodyString());
                  } catch (QiniuException e1) {
                      //ignore
                  }
              }       
          }
     
       public      void showAllFiles(File dir ,String token) throws Exception{
              File[] fs = dir.listFiles();
              for(int i=0; i<fs.length; i++){
               if(fs[i].isDirectory()){
                try{
                   showAllFiles(fs[i],"");
                  }catch(Exception e){
                  }
               }else{
                   
                   System.err.println(fs[i].getAbsolutePath());
                   //调用put方法上传
                      Response res = um.put(fs[i].getAbsolutePath(), fs[i].getName(),token);
                      //打印返回的信息
                      System.out.println(res.bodyString()); 
                   
               }
              }
            }
     
     
     

}

 

七牛云- Java 端 使用

标签:

原文地址:http://www.cnblogs.com/zgghb/p/5620468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!