微信端文件上传和下载

最近微信开发,用到文件上传和下载,代码整来,共享下。

public static String downLoadMedia(String download,String access_token,String mediaId,String format,String realPath) {
// 微信端多媒体文件下载
/*String upload = "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE";
String download = "http://file.api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id=MEDIA_ID";*/
String downloadMediaUrl = String.format(download,access_token,mediaId);
logger.info("微信多媒体文件下载地址:"+downloadMediaUrl);
try {
URL downloadUrl = new URL(downloadMediaUrl);
InputStream inputStream = downloadUrl.openStream();
String weChatMediaPath = PropKit.get("weChatMediaPath");
String fileName = realPath+weChatMediaPath+DateUtils.dateStr3(new Date())+"."+format;
File file = new File(fileName);//微信端多媒体文件下载存放路径
logger.info("微信多媒体文件路径:"+fileName);
if(!file.exists()){
file.getParentFile().mkdirs();
}
OutputStream outputStream = new BufferedOutputStream(new FileOutputStream(file));
byte[] buf = new byte[1024*8];
int len = 0;
while((len = inputStream.read(buf)) != -1) {
outputStream.write(buf,0,len);
}
outputStream.close();
inputStream.close();
return weChatMediaPath+DateUtils.dateStr3(new Date())+"."+format;
} catch (Exception e) {
e.printStackTrace();
}
return "";
}
}


下面是 上传

/**
* 上传
* @param token
* @param string
* @param picpath
* @return
*/
//String upload = "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token="+ACCESS_TOKEN+"&type=%s";三天后自动删除
//https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=ACCESS_TOKEN  post请求
//https://api.weixin.qq.com/cgi-bin/material/add_material?access_token="+ACCESS_TOKEN+"&type=%s" 占用使用次数
public static JSONObject upLoadMedia(String url,String mediaType,String mediaPath) {
String uploadMediaUrl = String.format(url,mediaType);
String boundary = "----------" + System.currentTimeMillis();// 设置边界  
try {
URL uploadUrl = new URL(uploadMediaUrl);
HttpURLConnection uploadConn = (HttpURLConnection) uploadUrl.openConnection();
uploadConn.setDoOutput(true);
uploadConn.setDoInput(true);
uploadConn.setRequestMethod("POST");
// 设置请求头Content-Type
uploadConn.setRequestProperty("Content-Type","/form-data;boundary=" + boundary);
// 获取媒体文件上传的输出流(往微信服务器写数据)

OutputStream outputStream = uploadConn.getOutputStream();
URL mediaUrl = new URL(mediaPath);
HttpURLConnection meidaConn = (HttpURLConnection) mediaUrl.openConnection();
meidaConn.setDoOutput(true);
meidaConn.setRequestMethod("GET");


// 从请求头中获取内容类型
String contentType = meidaConn.getHeaderField("Content-Type");
// 根据内容类型判断文件扩展名
String fileType = FileType.getFileType(mediaPath);
logger.info("当前上传多媒体类型为:"+fileType);
if(fileType == null) {
throw new BussinessException("微信端获取多媒体类型出错请联系系统管理员!");
}
// 请求体开始
outputStream.write(("--" + boundary + "\r\n").getBytes());
outputStream.write(String.format("Content-Disposition: form-data; name=\"media\"; filename=\"file1%s\"\r\n",fileType).getBytes());
outputStream.write(String.format("Content-Type: %s\r\n\r\n",contentType).getBytes());

// 获取媒体文件的输入流(读取文件)
BufferedInputStream bis = new BufferedInputStream(meidaConn.getInputStream());
byte[] buf = new byte[8096];
int size = 0;
while ((size = bis.read(buf)) != -1) {
outputStream.write(buf, 0, size);
}
// 请求体结束
outputStream.write(("\r\n--" + boundary + "--\r\n").getBytes());
outputStream.close();
bis.close();
meidaConn.disconnect();


// 获取媒体文件上传的输入流(从微信服务器读数据)
InputStream inputStream = uploadConn.getInputStream();
InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8");
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
StringBuffer buffer = new StringBuffer();
String str = null;
while ((str = bufferedReader.readLine()) != null) {
buffer.append(str);
}
bufferedReader.close();
inputStreamReader.close();
// 释放资源
inputStream.close();
inputStream = null;
uploadConn.disconnect();
//解析返回结果
JSONObject jsonObject = JSON.parseObject(buffer.toString());
logger.info("上传多媒体文件返回信息:"+jsonObject.toJSONString());
return jsonObject;
} catch (Exception e) {
String error = String.format("上传媒体文件失败:%s", e);
System.out.println(error);

return null;
}


微信小程序支持文件上传下载功能,这通常通过wx.request() API来实现,它是一个网络请求API,可以处理包括文件上传下载在内的HTTP请求。以下是基本步骤: **文件上传**: 1. 首先,你需要获取用户选择的文件,通过`wx.chooseFile()`方法让用户从手机相册或者本地文件系统选择文件。 2. 然后,创建一个包含`fileList`数组的`options`对象,并设置`url`指向服务器接收文件的接口地址,比如`https://your-server.com/upload`。 3. 调用`wx.uploadFile()`,传入`options`、进度回调函数以及成功、失败的回调函数。 ```javascript wx.uploadFile({ url: 'https://your-server.com/upload', filePath: file.path, name: file.name, // 如果有命名需求 formData: { key: 'filename', // 表单字段名 value: file.name }, header: { 'content-type': 'multipart/form-data' // 设置Content-Type }, success(res) { console.log('上传成功'); // 接收服务器返回的信息处理 }, fail(err) { console.error('上传失败:', err); } }) ``` **文件下载**: 类似地,你可以使用`wx.downloadFile()`来下载文件,提供文件的URL和回调处理函数。下载完成后,你可以保存到本地或者处理其他操作。 ```javascript wx.downloadFile({ url: 'https://your-server.com/download/file.zip', savePath: '/path/to/save/filename.zip', // 保存路径 success(res) { console.log('下载成功'); // 文件已下载到指定位置 }, fail(err) { console.error('下载失败:', err); } }) ```
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值