一、背景

  上篇博客我介绍了FastDFS的概念、原理以及安装步骤,这篇文章我们来聊一聊如何在java中使用FastDFSClient进行静态资源的上传。

二、使用步骤

  1.开发环境

    spring+springmvc+maven

  2.首先在maven的pom.xml中引入依赖fastdfs-client的依赖

  1. <dependency>
  2. <groupId>org.csource</groupId>
  3. <artifactId>fastdfs-client-java</artifactId>
  4. <version>5.0.4</version>
  5. </dependency>

  3.接着我们来指定一个fastdfs-client.conf配置文件,里面内容如下:

    tracker_server=host:port(这里指trackerServer服务器的ip和端口)

  4.然后写一个单元测试类来测试服务

  1. package com.hafiz.fastdfs;
  2.  
  3. import java.io.FileNotFoundException;
  4. import java.io.IOException;
  5.  
  6. import org.csource.common.MyException;
  7. import org.csource.fastdfs.ClientGlobal;
  8. import org.csource.fastdfs.StorageClient;
  9. import org.csource.fastdfs.StorageServer;
  10. import org.csource.fastdfs.TrackerClient;
  11. import org.csource.fastdfs.TrackerServer;
  12. import org.junit.Test;
  13.  
  14. import com.taotao.common.utils.FastDFSClient;
  15.  
  16. public class FastdfsTest {
  17.  
  18. private static final String CONFIGLOCATION = "D:\\fastdfs_client.conf";
  19.  
  20. @Test
  21. public void testUploadImg () {
  22. try {
  23. // 初始化全局配置。加载client配置文件
  24. ClientGlobal.init(CONFIGLOCATION);
  25. // 创建一个TrackerClient对象
  26. TrackerClient trackerClient = new TrackerClient();
  27. // 创建一个TrackerServer对象
  28. TrackerServer trackerServer = trackerClient.getConnection();
  29. // 声明一个StorageServer对象并初始为null
  30. StorageServer storageServer = null;
  31. // 获得StorageClient对象
  32. StorageClient storageClient = new StorageClient(trackerServer, storageServer);
  33. // 直接调用StorageClient对象方法上传文件即可
  34. String[] result = storageClient.upload_file("D:\\Documents\\Downloads\\高圆圆2.jpg", "jpg", null);
  35. for(String item : result) {
  36. System.out.println(item);
  37. }
  38. trackerServer.close();
  39. } catch (FileNotFoundException e) {
  40. e.printStackTrace();
  41. } catch (IOException e) {
  42. e.printStackTrace();
  43. } catch (MyException e) {
  44. e.printStackTrace();
  45. }
  46. }
  47.  
  48. @Test
  49. public void fastDfsClientTest() {
  50. try {
  51. FastDFSClient client = new FastDFSClient(CONFIGLOCATION);
  52. String imgUrl = client.uploadFile("D:\\Documents\\Downloads\\高圆圆1.jpg", "jpg", null);
  53. System.out.println(imgUrl);
  54. } catch (Exception e) {
  55. e.printStackTrace();
  56. }
  57. }
  58. }

  5.为了以后在项目中使用方便,我们不能每次都写这么一大串东西,所以我们来对该客户端进行以下封装:

  1. package com.hafiz.common.utils;
  2.  
  3. import org.csource.common.NameValuePair;
  4. import org.csource.fastdfs.ClientGlobal;
  5. import org.csource.fastdfs.StorageClient1;
  6. import org.csource.fastdfs.StorageServer;
  7. import org.csource.fastdfs.TrackerClient;
  8. import org.csource.fastdfs.TrackerServer;
  9.  
  10. public class FastDFSClient {
  11.  
  12. private TrackerClient trackerClient = null;
  13. private TrackerServer trackerServer = null;
  14. private StorageServer storageServer = null;
  15. private StorageClient1 storageClient = null;
  16.  
  17. public FastDFSClient(String conf) throws Exception {
  18.  
  19. if (conf.contains("classpath:")) {
  20. String url = this.getClass().getResource("/").getPath();
  21. url = url.substring(1);
  22. conf = conf.replace("classpath:", url);
  23. }
  24. ClientGlobal.init(conf);
  25. trackerClient = new TrackerClient();
  26. trackerServer = trackerClient.getConnection();
  27. storageServer = null;
  28. storageClient = new StorageClient1(trackerServer, storageServer);
  29. }
  30.  
  31. public String uploadFile(String fileName, String extName, NameValuePair[] metas) throws Exception {
  32. return storageClient.upload_file1(fileName, extName, metas);
  33. }
  34. public String uploadFile(String fileName, String extName) throws Exception {
  35. return storageClient.upload_file1(fileName, extName, null);
  36. }
  37.  
  38. public String uploadFile(String fileName) throws Exception {
  39. return storageClient.upload_file1(fileName, null, null);
  40. }
  41. public String uploadFile(byte[] fileContent, String extName, NameValuePair[] metas) throws Exception {
  42. return storageClient.upload_file1(fileContent, extName, metas);
  43. }
  44. public String uploadFile(byte[] fileContent, String extName) throws Exception {
  45. return storageClient.upload_file1(fileContent, extName, null);
  46. }
  47. public String uploadFile(byte[] fileContent) throws Exception {
  48. return storageClient.upload_file1(fileContent, null, null);
  49. }
  50.  
  51. }

三、总结

  通过以上的步骤,我们就完成在java中使用fastdfs客户端进行静态资源上传的功能,这里面我们得到一个最重要的思想就是:DRY(Don't Repeat Yourself!),要有封装的思想。

使用java调用fastDFS客户端进行静态资源文件上传的更多相关文章

  1. 【Java Web开发学习】Spring MVC文件上传

    [Java Web开发学习]Spring MVC文件上传 转载:https://www.cnblogs.com/yangchongxing/p/9290489.html 文件上传有两种实现方式,都比较 ...

  2. java网络编程(7)——利用tcp实现文件上传

    其实客户端与服务端通讯的道理都是一样的,都是通过输入与输出这两个流,那么实现文件上传也就是同样的,客户端把文件读到文件流,服务端用文件流来接受,然后写到一个文件中,这样子就实现了文件上传,文件拷贝也是 ...

  3. springboot整合web开发(整合servlet、filter、listener、访问静态、文件上传)

    整合servlet 1.继承HttpServlet 2.添加@WebServlet注解 @WebServlet(name="FirstServlet",urlPatterns=&q ...

  4. [SAP ABAP开发技术总结]客户端文本文件、Excel文件上传下载

    声明:原创作品,转载时请注明文章来自SAP师太技术博客( 博/客/园www.cnblogs.com):www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将 ...

  5. Java Web使用Html5 FormData实现多文件上传

    前一阵子,迭代一个线上的项目,其中有一个图片上传的功能,之前用的ajaxfileupload.js来实现上传的,不过由于ajaxfileupload.js,默认是单文件上传(虽然可以通过修改源码的方法 ...

  6. 从.Net到Java学习第十篇——Spring Boot文件上传和下载

    从.Net到Java学习系列目录 图片上传 Spring Boot中的文件上传就是Spring MVC中的文件上传,将其集成进来了. 在模板目录创建一个新的页面 profile/uploadPage. ...

  7. MVC文件图片ajax上传轻量级解决方案,使用客户端JSAjaxFileUploader插件01-单文件上传

    前段时间做了几个关于图片.文件上传的Demo,使用客户端Query-File-Upload插件和服务端Badkload组件实现多文件异步上传,比如"MVC文件上传04-使用客户端jQuery ...

  8. asp.net core系列 69 Amazon S3 资源文件上传示例

    一.  上传示例 Install-Package AWSSDK.S3 -Version 3.3.104.10 using Amazon; using Amazon.Runtime; using Ama ...

  9. Java 利用Apache Commons Net 实现 FTP文件上传下载

    package woxingwosu; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import ...

随机推荐

  1. HTTP 错误 500.XX - Internal Server Error 解决办法

    HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效. 详细错误信息 模块 IIS Web Core 通知 未知 处理程序 尚未 ...

  2. AtCoder Beginner Contest-060

    A - Shiritori Problem Statement You are given three strings A, B and C. Check whether they form a wo ...

  3. 1114 Family Property

    This time, you are supposed to help us collect the data for family-owned property. Given each person ...

  4. 20145232 韩文浩 《Java程序设计》第5周学习总结

    教材学习内容总结 处理异常 教材中使用一个简单的程序,用户连续输入整数最后输入0结束后显示输入数的平均值. 但有时,用户会没有按常规出牌输入不正确的信息,例如"30"输成" ...

  5. Java Applet在IE中浏览

    1. IE --> 工具 --> Internet选项 --> 取消“将Java1.6.0.4加入Internet”选择项. 2. 开始 --> 控制面板 --> Jav ...

  6. linux-CentOS初学terminal命令(3)rm、chmod、mkdir、who、w、id、systemctl、

    PS 1:windows不允许出现字母相同,但是大小写不同的文件名,因为在windows下会将它们认作是同名. 但是linux允许出现字母相同,大小写不同的文件名. ps 2:prompt 提示 1. ...

  7. android 数据库更新

    SQLiteOpenHelper封装       继承SQLiteOpenHelper类,在构造方法中分别需要传入Context,数据库名称,CursorFactory(一般传入null,为默认数据库 ...

  8. SurfaceView+MediaPlayer播放视频

    SurfaceView拥有独立的绘图表面,因此SurfaceView的UI就可以在一个独立的线程中进行行绘制.又由于不占用主线程资源,SurfaceView一方面可以实现复杂而高效的UI,另一方面又不 ...

  9. logrotate 日志切割工具

    相关原理参见:https://www.cnblogs.com/sailrancho/p/4784763.html 一.相关目录: 程序:/usr/sbin/logrotate配置:/etc/logro ...

  10. MCU编程_基础

    包含头文件符号的区别 有这样的包含头文件语句 #include <reg52.h> #include"reg52.h" 两者区别在于: <>:编译器先进入软 ...