小程序
小游戏
企业微信
微信支付
扫描小程序码分享
调用微信https://api.mch.weixin.qq.com/v3/merchant/media/upload,报System.IO.IOException错误
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
建议用官方maven包,源码地址: https://github.com/wechatpay-apiv3/wechatpay-apache-httpclient
使用WechatPayUploadHttpPost构造一个上传的HttpPost,需设置待上传文件的文件名,SHA256摘要,文件的输入流。
通过WechatPayHttpClientBuilder得到的HttpClient发送请求。示例请参考下列代码。
String filePath = "/your/home/hellokitty.png"; URI uri = new URI("https://api.mch.weixin.qq.com/v3/merchant/media/upload"); File file = new File(filePath); try (FileInputStream ins1 = new FileInputStream(file)) { String sha256 = DigestUtils.sha256Hex(ins1); try (InputStream ins2 = new FileInputStream(file)) { HttpPost request = new WechatPayUploadHttpPost.Builder(uri) .withImage(file.getName(), sha256, ins2) .build(); CloseableHttpResponse response1 = httpClient.execute(request); } }
AutoUpdateVerifierTest.uploadImageTest 是一个更完整的示例。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
建议用官方maven包,源码地址: https://github.com/wechatpay-apiv3/wechatpay-apache-httpclient
使用WechatPayUploadHttpPost构造一个上传的HttpPost,需设置待上传文件的文件名,SHA256摘要,文件的输入流。
通过WechatPayHttpClientBuilder得到的HttpClient发送请求。示例请参考下列代码。
String filePath = "/your/home/hellokitty.png"; URI uri = new URI("https://api.mch.weixin.qq.com/v3/merchant/media/upload"); File file = new File(filePath); try (FileInputStream ins1 = new FileInputStream(file)) { String sha256 = DigestUtils.sha256Hex(ins1); try (InputStream ins2 = new FileInputStream(file)) { HttpPost request = new WechatPayUploadHttpPost.Builder(uri) .withImage(file.getName(), sha256, ins2) .build(); CloseableHttpResponse response1 = httpClient.execute(request); } }
AutoUpdateVerifierTest.uploadImageTest 是一个更完整的示例。