Android 仿照微信发说说,既能实现拍照,选图库,多图案上传,使用Retrofit技术。
使用方法:详见//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
您可能感兴趣的文章:Android中Retrofit 2.0直接使用JSON进行数据交互android Retrofit2+okHttp3使用总结Android Retrofit实现多图片/文件、图文上传功能Android Retrofit和Rxjava的网络请求Android中Retrofit+OkHttp进行HTTP网络编程的使用指南Android Retrofit 2.0框架上传图片解决方案简略分析Android的Retrofit应用开发框架源码Android app开发中Retrofit框架的初步上手使用Android Retrofit 中文乱码问题的解决办法