欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2024-02-22 13:33:58
android 仿照微信发说说,既能实现拍照,选图库,多图案上传,使用retrofit技术。 使用方法:详见 项目的运行效果: 服务器端接收文件的action...

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

使用方法:详见

项目的运行效果:

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

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

服务器端接收文件的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);
 }



}

服务器运行效果:

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

代码:https://github.com/lidong1665/android-uploadmultipartimage

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