AndroID 仿照微信发说说,既能实现拍照,选图库,多图案上传,使用Retrofit技术。
使用方法:详见https://www.oudahe.com/p/23128/
项目的运行效果:
服务器端接收文件的action
Uploadfile.java
@Controllerpublic 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仿微信多张图片拍照上传全部内容,希望文章能够帮你解决Android使用Retrofit仿微信多张图片拍照上传所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)