dfs文件服务器访问权限,fastDFS 文件服务器访问

鉴权 token 获取

token 由文件服务器管理员分配

接口定义

上传文件

请求 URL:

请求方式:

GET/POST

参数形式:

form-data

参数:

参数名位置类型说明是否必填

access_tokenheaderString用户 token是

fileurlMultipartFile文件是

返回:

参数名必选类型说明

msg是String提示

code是Integer错误代码

data是String数据

data 域内容

参数名必选类型说明

filePath是String文件的存储位置

fileName是Integer文件的原始名称

fileType是String文件类型

httpUrl是String文件的访问地址(未开启防盗链时可用)

返回示例

{

"msg": "操作成功",

"code": 200,

"data": {

"filePath": "group1/M00/00/0D/wKjcAl-SNgmAVJK7AACEAGBrbtI245.jpg",

"fileName": "timg.jpg",

"fileType": "jpg",

"httpUrl": "http://192.168.220.2:80/group1/M00/00/0D/wKjcAl-SNgmAVJK7AACEAGBrbtI245.jpg"

}

}

备注

获取防盗链地址

请求 URL:

请求方式:

GET/POST

参数形式:

form-data

参数:

参数名位置类型说明是否必填

access_tokenheaderString用户 token是

filePathurlString文件路径是

返回:

参数名必选类型说明

msg是String提示

code是Integer错误代码

data是String文件的防盗链访问路径

返回示例

{

"msg": "操作成功",

"code": 200,

"data": "http://192.168.220.2:80/group1/M00/00/0D/wKjcAl-SNgmAVJK7AACEAGBrbtI245.jpg?token=639e5738e7c457eb2f061fc0d71a3165&ts=1603417665"

}

备注

删除文件

请求 URL:

请求方式:

GET/POST

参数形式:

form-data

参数:

参数名位置类型说明是否必填

access_tokenheaderString用户 token是

filePathurlString文件路径是

返回:

参数名必选类型说明

msg是String提示

code是Integer错误代码

data是Integer0 为正常响应,非 0 为异常响应,文件不存在等

返回示例

{

"msg": "操作成功",

"code": 200,

"data": 0

}

备注

java 调用工具类

import org.apache.http.HttpResponse;

import org.apache.http.client.HttpClient;

import org.apache.http.client.methods.HttpPost;

import org.apache.http.entity.StringEntity;

import org.apache.http.impl.client.DefaultHttpClient;

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;

import org.springframework.web.multipart.MultipartFile;

import java.io.*;

import java.net.HttpURLConnection;

import java.net.URL;

import java.util.HashMap;

import java.util.Map;

public class HttpClientUtil {

private static Logger logger = LoggerFactory.getLogger(HttpClientUtil.class);

/**

* 路径分隔符

*/

public static final String SEPARATOR = "/";

/**

* Point

*/

public static final String POINT = ".";

/**

* ContentType

*/

public static final Map EXT_MAPS = new HashMap<>();

static {

initExt();

}

public static void initExt() {

// image

EXT_MAPS.put("png", "image/png");

EXT_MAPS.put("gif", "image/gif");

EXT_MAPS.put("bmp", "image/bmp");

EXT_MAPS.put("ico", "image/x-ico");

EXT_MAPS.put("jpeg", "image/jpeg");

EXT_MAPS.put("jpg", "image/jpeg");

// 压缩文件

EXT_MAPS.put("zip", "application/zip");

EXT_MAPS.put("rar", "application/x-rar");

// doc

EXT_MAPS.put("pdf", "application/pdf");

EXT_MAPS.put("ppt", "application/vnd.ms-powerpoint");

EXT_MAPS.put("xls", "application/vnd.ms-excel");

EXT_MAPS.put("xlsx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");

EXT_MAPS.put("pptx", "application/vnd.openxmlformats-officedocument.presentationml.presentation");

EXT_MAPS.put("doc", "application/msword");

EXT_MAPS.put("doc", "application/wps-office.doc");

EXT_MAPS.put("docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document");

EXT_MAPS.put("txt", "text/plain");

// 音频

EXT_MAPS.put("mp4", "video/mp4");

EXT_MAPS.put("flv", "video/x-flv");

}

/**

* @Title: postRestData

* @TitleExplain: post请求接口

* @Description: post请求接口

* @param urlStr 请求url

* @return String post响应

*/

public static String postDataLikeFormData(String urlStr,MultipartFile file,String fastdfsAccessToken) {

String result = "";

// 换行符

final String newLine = "\r\n";

final String boundaryPrefix = "--";

// 定义数据分隔线

String BOUNDARY = "========7d4a6d158c9";

// 服务器的域名

URL url =null;

HttpURLConnection conn=null;

DataInputStream in=null;

try {

url = new URL(urlStr);

conn = (HttpURLConnection) url.openConnection();

// 设置为POST情

conn.setRequestMethod("POST");

// 发送POST请求必须设置如下两行

conn.setDoOutput(true);

conn.setDoInput(true);

conn.setUseCaches(false);

// 设置请求头参数

conn.setRequestProperty("connection", "Keep-Alive");

conn.setRequestProperty("Charsert", "UTF-8");

conn.setRequestProperty("access_token",fastdfsAccessToken);

conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + BOUNDARY);

OutputStream out = new DataOutputStream(conn.getOutputStream());

/**

* 循环输出

*

* */

StringBuilder sb = new StringBuilder();

sb.append(boundaryPrefix);

sb.append(BOUNDARY);

sb.append(newLine);

sb.append("Content-Disposition: form-data;name=\"file\";filename=\"" + file.getOriginalFilename()

+ "\"" + newLine);

String contentType=getContentTypeByFileName(file.getOriginalFilename());

sb.append("Content-Type:"+contentType);

sb.append(newLine);

sb.append(newLine);

out.write(sb.toString().getBytes());

byte[] bufferOut = new byte[1024];

int bytes = 0;

//如果文件为空则不上传

if (file.isEmpty() || file.getSize() <= 0) {

logger.debug("文件为空或大小为0没有上传fastdfs:" + file.getOriginalFilename());

return null;

}

in = new DataInputStream(file.getInputStream());

while ((bytes = in.read(bufferOut)) != -1) {

//bufferOut转化为String之后会损失部分数据,所以之后的操作直接输出,不转化为string

// sb.append(new String(bufferOut));

out.write(bufferOut, 0, bytes);

}

sb.append(newLine + boundaryPrefix + BOUNDARY);

sb.append(boundaryPrefix + newLine);

byte[] end_data = (newLine + boundaryPrefix + BOUNDARY + boundaryPrefix + newLine).getBytes();

out.write(end_data);

logger.debug("请求数据为: "+sb.toString());

out.flush();

out.close();

StringBuffer sbResult = new StringBuffer();

// 定义BufferedReader输入流来读取URL的响应

BufferedReader reader = new BufferedReader(new InputStreamReader(

conn.getInputStream()));

String line = null;

while ((line = reader.readLine()) != null) {

//System.out.println(line);

sbResult.append(line+"\r\n");

}

reader.close();

result = sbResult.toString();

} catch (Exception e) {

logger.error("发送POST请求出现异常!" + e);

}finally {

if (conn != null) {

conn.disconnect();

try {

in.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

logger.debug("post "+urlStr +",result="+result);

return result;

}

/**

* 根据文件名获取contentType

* */

public static String getContentTypeByFileName(String fileName){

return EXT_MAPS.get(getFilenameSuffix(fileName));

}

/**

* 获取文件名称的后缀

*

* @param filename 文件名 或 文件路径

* @return 文件后缀

*/

public static String getFilenameSuffix(String filename) {

String suffix = null;

String originalFilename = filename;

if (StringUtils.isNotBlank(filename)) {

if (filename.contains(SEPARATOR)) {

filename = filename.substring(filename.lastIndexOf(SEPARATOR) + 1);

}

if (filename.contains(POINT)) {

suffix = filename.substring(filename.lastIndexOf(POINT) + 1);

} else {

if (logger.isErrorEnabled()) {

logger.error("filename error without suffix : {}", originalFilename);

}

}

}

return suffix;

}

/**

* 从指定系统获取写卡数据

*

* */

public static String downloadFile(String urlStr,String filePath,String fastdfsAccessToken){

String result = null;

try{

HttpClient client = new DefaultHttpClient();

StringBuffer sb=new StringBuffer(urlStr);

StringBuffer params=new StringBuffer("");

params.append("filePath=");

params.append(filePath);

HttpPost post = new HttpPost(sb.toString());

//设置header参数

post.addHeader("access_token",fastdfsAccessToken);

//设置其它参数

StringEntity stringEntity = new StringEntity(params.toString());//param参数,可以为"key1=value1&key2=value2"的一串字符串

stringEntity.setContentType("application/x-www-form-urlencoded");

post.setEntity(stringEntity);

HttpResponse resp = client.execute(post);

BufferedReader brBufferedReader = new BufferedReader(

new InputStreamReader(resp.getEntity().getContent(), "utf-8"));

StringBuffer resultSb = new StringBuffer();

String line = "";

while ((line = brBufferedReader.readLine()) != null) {

resultSb.append(line);

}

brBufferedReader.close();

result = resultSb.toString();

}catch(Exception e){

logger.error("系统异常:",e);

}

return result;

}

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540769.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CCFL的完整形式是什么?

CCFL&#xff1a;冷阴极荧光灯 (CCFL: Cold Cathode Fluorescent Lamp) CCFL is an abbreviation of a "Cold Cathode Fluorescent Lamp". CCFL是“冷阴极荧光灯”的缩写。 It is a lighting system lamp that contains cathode that discharges electrons and it …

ffmpeg 纯静态编译,以及添加自定义库流程摘要

需求&#xff1a; 1. 纯静态编译ffmpeg ,即ldd ./ffmpeg 的结果是&#xff1a;not a dynamic executable2. 修改ffmpeg 项目&#xff0c;添加自定义功能库3. 自定义库由c实现&#xff0c;要求能被纯c的ffmpeg项目调用4. 自定义库必须使用g 的一些高级特性编译&#xff0c;要求…

vue ani_ANI的完整形式是什么?

vue aniANI&#xff1a;自动号码识别 (ANI: Automatic Number Identification) ANI is an abbreviation of "Automatic number identification". ANI是“自动号码识别”的缩写 。 It is an attribute of a network of telecommunications for involuntarily finding…

realme系统服务器代码,解锁BL之后,Realme正式开放源代码

集微网8月30日消息(文/数码控)&#xff0c;此前Realme已经开放了解锁BootLoader(简称BL)&#xff0c;现在官方更进一步&#xff0c;直接将Realme X、Realme X青春版的源代码开放了。可能有的人不知道解锁BL与开放源代码是什么意思&#xff0c;我们在此来说明一下&#xff1a;Bo…

Codeforces 757B - Bash's Big Day(分解因子+hashing)

757B - Bashs Big Day 思路&#xff1a;筛法。将所有因子个数求出&#xff0c;答案就是最大的因子个数&#xff0c;注意全为1的特殊情况。 代码&#xff1a; #include<bits/stdc.h> using namespace std; #define ll long long #define pb push_back const int N1e55; in…

JavaScript中的const

const (const) Like other programming languages, JavaScript also provide the feature to create constants, we can make any identifier as constant by using the "const". 与其他编程语言一样&#xff0c;JavaScript也提供了创建常量的功能&#xff0c;我们可…

无法从ftp服务器上复制文件格式,ftp服务器上复制不了文件格式

ftp服务器上复制不了文件格式 内容精选换一换本版本提供dump_data_conversion.pyc脚本&#xff0c;实现dump数据文件与numpy文件格式互转功能&#xff0c;具体命令行格式如下&#xff1a;-type&#xff1a;数据类型&#xff0c;必选参数 。参数值选项&#xff1a;quant&#xf…

华大基因茅矛:云计算让精准医疗走进生活

2016年是“十三五”的开局之年&#xff0c;也是中国医疗卫生行业的关键一年。现在看来&#xff0c;也会是医疗行业和以大数据为代表的信息技术相互融合发展之年。今年4月&#xff0c;国务院办公厅印发《深化医药卫生体制改革2016年重点工作任务》&#xff0c;其中不仅谈到了要加…

Python Pandas –操作

Pandas support very useful operations which are illustrated below, 熊猫支持非常有用的操作&#xff0c;如下所示&#xff0c; Consider the below dataFrame, 考虑下面的dataFrame&#xff0c; import numpy as npimport pandas as pddf pd.DataFrame({col1: [1, 2, 3,…

有道词典总显示无法连接服务器,有道词典无法联网提示网络已断开该怎么办

人们使用电脑时候最不想看到的事情之一就是上不了网了&#xff0c;无论是工作还是玩游戏时候都很不爽。电脑能正常上网&#xff0c;但是有道词典始终无法联网。这是怎么回事呢?下面一起看看!方法步骤1、我是win8的系统。有道词典无法联网后&#xff0c;我在网上查了一下方法&a…

ajax+lazyload时lazyload失效问题及解决

最近写公司的项目的时候遇到一个关于图片加载的问题&#xff0c;所做的页面是一个商城的商品列表页&#xff0c;其中需要显示商品图片&#xff0c;名称等信息&#xff0c;因为商品列表可能会很长&#xff0c;所以其中图片需要滑到可以显示的区域再进行加载。 首先我的图片加载插…

手游pubg mobile服务器正在维护,PUBG Mobile Download Failed怎么解决

《PUBG Mobile》国际服出现下载失败的情况&#xff0c;你将会收到“Download Failed”提示&#xff0c;你就需要按照下述的方法去解决该问题。注意&#xff1a;如果下载不了 请复制浏览器上的链接 https:/http://pic.81857.netownloads.gradle.orghttp://pic.81857.netistribut…

Python自动化运维之常用模块—logging

在现实生活中&#xff0c;记录日志非常重要。银行转账时会有转账记录&#xff1b;如果有出现什么问题&#xff0c;人们可以通过日志数据来搞清楚到底发生了什么。 对于系统开发、调试以及运行&#xff0c;记录日志都是同样的重要。如果没有日志记录&#xff0c;程序崩溃时你…

Sys.WORD_SIZE Julia中的常量

Julia| Sys.WORD_SIZE常数 (Julia | Sys.WORD_SIZE Constant) Sys.WORD_SIZE is a constant of the Int64 type in Julia programming language, it is used to get the standard word size of the current system. Sys.WORD_SIZE是Julia编程语言中Int64类型的常量&#xff0c;…

ftp服务器如何配置多个文件夹,ftp服务器如何配置多个文件夹

ftp服务器如何配置多个文件夹 内容精选换一换Model File:模型文件。单击右侧的文件夹图标&#xff0c;在后台服务器sample所在路径(工程目录/run/out/test_data/model)选择需要转化的模型对应的*.prototxt文件&#xff0c;并上传。Weight File:权重文件。请自行从https://obs-m…

scala 方法调用_Scala中的方法调用

scala 方法调用Scala方法调用 (Scala Method Invocation) Method invocation is the legal and correct technique to call a method in Scala programming language. The methods of a class are usually accessed by using two methods. 方法调用是用Scala编程语言调用方法的…

docker lnmp php

使用 Docker 构建 LNMP 环境https://segmentfault.com/a/1190000008833012Docker 快速上手指南https://segmentfault.com/a/1190000008822648#articleHeader44

根据分类id找出父类id

2019独角兽企业重金招聘Python工程师标准>>> 数组格式要求 id > pid $columns [ 1 > 0, 10 > 1, 200 > 10 ]; public function getP($columns,$pid) { 模拟 $pid 200; $arr $columns; while($arr[$pid]) { …

不稳定学习器适合做基分类器_分类稳定性

不稳定学习器适合做基分类器什么是分类&#xff1f; (What is sorting?) It means to arrange data elements in increasing or decreasing order. There are many algorithms to do so like mergesort, quicksort, counting sort etc but there are pros and cons of each al…

JavaScript基础学习--05自定义属性、索引值

Demos&#xff1a; https://github.com/jiangheyan/JavaScriptBase 一、自定义属性1、读写操作<input abc"123" type"button" value"按钮" />//读写&#xff1a; var aBtn document.getElementsByTagName(input); aBtn[0].abc 456; 2、…