栏目分类:
子分类:
返回
文库吧用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
文库吧 > IT > 软件开发 > 移动开发 > Android

Android使用Retrofit仿微信多张图片拍照上传

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Android使用Retrofit仿微信多张图片拍照上传

Android 仿照微信发说说,既能实现拍照,选图库,多图案上传,使用Retrofit技术。

使用方法:详见https://www.jb51.net/article/103009.htm

项目的运行效果:

服务器端接收文件的action

UploadFile.java

@Controller
public class UploadFile extends ActionSupport {

 
 private static final long serialVersionUID = 1L;

 private File[] file;//文件数组
 private String description;//说说内容
 public File[] getFile() {
 return file;
 }
 public void setFile(File[] file) {
 this.file = file;
 }


 public String getDescription() {
 return description;
 }
 public void setDescription(String description) {
 this.description = description;
 }
 @Action("/upload")
 public void upload() {
 System.out.println("上传的文件="+Arrays.toString(file));
 System.out.println("说说内容="+description);
 }



}

服务器运行效果:

代码:https://github.com/lidong1665/Android-UploadMultipartImage

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.wk8.com.cn
本文地址:https://www.wk8.com.cn/it/160143.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 wk8.com.cn

ICP备案号:晋ICP备2021003244-6号