Android

关注公众号 jb51net

关闭
首页 > 软件编程 > Android > Android Retrofit微信图片上传

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

作者:一叶飘舟

这篇文章主要介绍了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

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

您可能感兴趣的文章:
阅读全文