package yao.camera.util;





import java.io.ByteArrayOutputStream;

import java.io.DataOutputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.InputStream;

import java.net.HttpURLConnection;

import java.net.URL;

import android.graphics.Bitmap;

import android.text.TextUtils;





/**

 * @author wuxifu  图片/文件的上传: Content-Type: multipart/form-data;

 *         boundary=---------------------------114556938680 Content-Length: 210

 * 

 *         -----------------------------114556938680 Content-Disposition:

 *         form-data; name="fileName"; filename="wuxifu.txt" Content-Type:

 *         text/plain

 * 

 *         hello how doyou do -----------------------------114556938680--

 * 

 * 

 */

public class UploadUtils {

public static final String IMAGE_TYPE_PNG = "PNG";

public static final String IMAGE_TYPE_JPG = "JPG";

public static final String end = "\r\n";

public static final String twoHyphens = "--";

public static final String boundary = "*****";

private String url;

private String fileNameKey;





/**

* @param url

* @param fileNameKey

*            name="fileName"之fileName即为fileNameKey,这个取决于后台开发人员的习惯)<form

*            action="uploadFile.php" method="post"

*            enctype="multipart/form-data"> <input type="file"

*            name="fileName"> <input type="submit" value="上传文件"> </form>



*/

public UploadUtils(String url, String fileNameKey) {

super();

this.url = url;

this.fileNameKey = fileNameKey;

}













/**

* @param bitmap

* @param imageType   PNG  JPG

* @param mFileName   hello.jpg    hello.png  须要扩展名

* @param iUpload

*/

public synchronized void uploadBitmap(Bitmap bitmap, String imageType,String mFileName ,IUpload iUpload) {

try {

URL url2 = new URL(url);

HttpURLConnection con = (HttpURLConnection) url2.openConnection();

/* 同意Input、Output,不使用Cache */

con.setDoInput(true);

con.setDoOutput(true);

con.setUseCaches(false);

/* POST方法 */

con.setRequestMethod("POST");

/* setRequestProperty */

con.setRequestProperty("Connection", "Keep-Alive");

con.setRequestProperty("Charset", "UTF-8");

con.setRequestProperty("Content-Type",

"multipart/form-data;boundary=" + boundary);







DataOutputStream ds = new DataOutputStream(con.getOutputStream());





ds.writeBytes(twoHyphens + boundary + end);

ds.writeBytes("Content-Disposition: form-data; " + "name=\""

+ fileNameKey + "\";filename=\"" + mFileName + "\"");

ds.writeBytes(end);// 换行

// 图片类型的确定

if (!TextUtils.isEmpty(imageType)

&& imageType.equals(IMAGE_TYPE_PNG)) {

ds.writeBytes("Content-Type:image/png");

} else {

ds.writeBytes("Content-Type:image/jpeg");

}

ds.writeBytes(end + end);





ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

// 压缩类型的确定

if (!TextUtils.isEmpty(imageType)

&& imageType.equals(IMAGE_TYPE_PNG)) {

bitmap.compress(Bitmap.CompressFormat.PNG, 100,

byteArrayOutputStream);

} else {

bitmap.compress(Bitmap.CompressFormat.JPEG, 100,

byteArrayOutputStream);

}

byte[] byteArray = byteArrayOutputStream.toByteArray();

ds.write(byteArray);

ds.writeBytes(end + end);

ds.writeBytes(twoHyphens + boundary + twoHyphens + end);

/* close streams */

byteArrayOutputStream.close();

ds.flush();

/* 获取提交数据后server返回的内容 */

InputStream is = con.getInputStream();

StringBuffer b = new StringBuffer();

int length = 0;

byte[] buffer = new byte[1024];

while ((length = is.read(buffer)) != -1) {

b.append(new String(buffer, 0, length));

}





/* success */

iUpload.uploadSuccess(b.toString());

/* close */

ds.close();

} catch (Exception e) {

iUpload.uploadFailed(e.toString());

}

}





/**

* @param file  上传文件

* @param iUpload

*/

public synchronized void uploadFile(File file, IUpload iUpload) {

try {

URL url2 = new URL(url);

HttpURLConnection con = (HttpURLConnection) url2.openConnection();

/* 同意Input、Output,不使用Cache */

con.setDoInput(true);

con.setDoOutput(true);

con.setUseCaches(false);

/* post方法*/

con.setRequestMethod("POST");

/* setRequestProperty */

con.setRequestProperty("Connection", "Keep-Alive");

con.setRequestProperty("Charset", "UTF-8");

con.setRequestProperty("Content-Type",

"multipart/form-data;boundary=" + boundary);







DataOutputStream ds = new DataOutputStream(con.getOutputStream());

ds.writeBytes(twoHyphens + boundary + end);

ds.writeBytes("Content-Disposition: form-data; " + "name=\""

+ fileNameKey + "\";filename=\"" + file.getName() + "\"");

ds.writeBytes(end+end);

FileInputStream fStream = new FileInputStream(file);

int bufferSize = 1024;

byte[] buffer = new byte[bufferSize];

int length = -1;

while ((length = fStream.read(buffer)) != -1) {

ds.write(buffer, 0, length);

ds.flush();

}

ds.writeBytes(end + end);

ds.writeBytes(twoHyphens + boundary + twoHyphens + end);

/* close streams */

fStream.close();

ds.flush();

/* 获取提交数据后server返回的内容*/

InputStream is = con.getInputStream();

StringBuffer b = new StringBuffer();

while ((length = is.read(buffer)) != -1) {

b.append(new String(buffer, 0, length));

}

/* success */

iUpload.uploadSuccess(b.toString());

/*close */

ds.close();

} catch (Exception e) {

iUpload.uploadFailed(e.toString());

}

}





public interface IUpload {

void uploadSuccess(String message);





void uploadFailed(String message);

}

}

上传图片/文件到server的更多相关文章

  1. [Ajax] 使用Ajax异步上传图片文件(非Form表单提交)

    通过表单Form提交来上传文件的方式这里就不说了: 下面介绍,通过js中使用ajax异步上传图片文件: 新建一个html页面和一个一般处理程序即可: 涉及思路: //发送2次Ajax请求完成js异步上 ...

  2. 利用webuploader插件上传图片文件,完整前端示例demo,服务端使用SpringMVC接收

    利用WebUploader插件上传图片文件完整前端示例demo,服务端使用SpringMVC接收 Webuploader简介   WebUploader是由Baidu WebFE(FEX)团队开发的一 ...

  3. php上传图片文件常用的几个方法

    1. 前台 <form class="add-form" method="post" action="/person/save" en ...

  4. 利用Spring MVC 上传图片文件

    本文转自:http://amcucn.iteye.com/blog/264457.感谢作者 近日在工作当中,需要用到上传图片的功能,然而自己平时学习的时候只会使用struts的上传功能,但因为项目并没 ...

  5. html+php上传图片文件到服务器

    html+php上传图片文件到服务器 一.html代码 <body> <form action="" method="post" enctyp ...

  6. 工作笔记4.struts2上传文件到server

    本文介绍两种:上传文件到server的方式   一种是提交Form表单:还有一种是ajaxfileupload异步上传. 一.JSP中:     1.提交Form表单 为了能完毕文件上传,我们应该将这 ...

  7. Android端通过HttpURLConnection上传文件到server

    Android端通过HttpURLConnection上传文件到server 一:实现原理 近期在做Androidclient的应用开发,涉及到要把图片上传到后台server中.自己选择了做Sprin ...

  8. ajax上传图片文件

    这里用的是一个隐藏的iframe,这样可以让form表单提交到这个iframe里面,用户就看不到页面的刷新了 前段时间在解决ajax上传文件时折腾了好一阵.直接用$.post上传文本信息肯定是没有问题 ...

  9. ionic新手教程第三课-在项目中使用requirejs分离controller文件和server文件

    继上篇教程中提到的,我们新建一个简单的tabs类型的Ionic项目. 依据文件夹文件我们知道,系统自己主动创建了一个controller文件和server文件,而且把全部的控制器和服务都写到这两个文件 ...

随机推荐

  1. Leetcode4--->求两个排序数组的中位数

    题目:给定两个排序数组,求两个排序数组的中位数,要求时间复杂度为O(log(m+n)) 举例: Example 1: nums1 = [1, 3] nums2 = [2] The median is ...

  2. configparser模块——用于生成和修改常见配置文档

    配置文档格式 [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [b ...

  3. python踩坑系列——报错后修改了.py文件,但是依然报错

    一开始.py文件中的函数名大小写错了,但是在终端是对的,报错: 'module' object has no attribute '某函数名' 后来就去修改.py文件.结果重新import该.py文件 ...

  4. [错误解决]Ubuntu中使用dpkg安装deb文件提示依赖关系问题,仍未被配置

    使用dpkg进行软件安装时,提示:dpkg:处理软件包XXX时出错:依赖关系问题,仍未被配置 使用如下命令,sudo apt-get install -f 等分析完之后,重新使用dpkg –i XXX ...

  5. ThinkPHP5杂技(二)

    不要使用数据库查询嵌套 if (!$listA = Db::name('coin') ->field('id,symbol') ->where('id', 'IN', logic('All ...

  6. [OJ#63]树句节够提

    [OJ#63]树句节够提 试题描述 给定一棵节点数为 N 的有根树,其中 1 号点是根节点,除此之外第 i 个节点的父亲为 fi.每个节点有一个权值 Ai,所有边权均为 1. 给定 Q 个询问,每个询 ...

  7. CORS跨域请求总结

    CORS跨域请求分为简单请求和复杂请求. 1. 简单请求: 满足一下两个条件的请求. (1) 请求方法是以下三种方法之一: HEAD GET POST (2)HTTP的头信息不超出以下几种字段: Ac ...

  8. [APIO2015] 雅加达的摩天楼 (分块,最短路)

    题目链接 Solution 分块+\(Dijkstra\). 难点在于建边,很明显 \(O(n^2)\) 建边会挂一堆 . 那么考虑一下, \(n^2\) 建边多余的是哪些东西 \(???\) 很显然 ...

  9. ace模板dataTables_length控制是否显示分页

    默认的ace中配置的是7列之后才显示分页的,其实是可控的,如下: aoColumns这个参数的含义: 排序控制 $(document).ready(function() {$('#example'). ...

  10. 10个JavaScript难点--摘抄

    1. 立即执行函数 立即执行函数,即Immediately Invoked Function Expression (IIFE),正如它的名字,就是创建函数的同时立即执行.它没有绑定任何事件,也无需等 ...