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. STL之set容器的总结

    最近做了很多题型,都是用简单的STL就解决了,深刻的感觉到STL的伟大力量,但是本人在遇到问题的时候还是喜欢用常规的算法去解决问题,脑袋笨没办法,有时候根本想不到用STL去解决一些问题 往往都是砍了网 ...

  2. 九度oj 题目1496:数列区间

    题目描述: 有一段长度为n(1<=n<=1000000)的数列,数列中的数字从左至右从1到n编号.初始时数列中的数字都是0. 接下来我们会对其进行m(1<=m<=100000) ...

  3. 爬取本blog的所有标题和链接

    #coding=utf-8 from bs4 import BeautifulSoup import urllib.request for i in range(1,54): url = " ...

  4. hdu6098[RMQ+筛法] 2017多校6

    /*hdu6098[RMQ+筛法] 2017多校6*/ #include <bits/stdc++.h> using namespace std; ][], len[], a[]; voi ...

  5. iOS学习笔记32-iCloud入门

    一.iCloud云服务 iCloud是苹果提供的云端服务,用户可以将通讯录.备忘录.邮件.照片.音乐.视频等备份到云服务器并在各个苹果设备间直接进行共享而无需关心数据同步问题,甚至即使你的设备丢失后在 ...

  6. 【bzoj2467】[中山市选2010]生成树 矩阵树定理

    题目描述 有一种图形叫做五角形圈.一个五角形圈的中心有1个由n个顶点和n条边组成的圈.在中心的这个n边圈的每一条边同时也是某一个五角形的一条边,一共有n个不同的五角形.这些五角形只在五角形圈的中心的圈 ...

  7. <定时主库导出/备库导入>

    1.设置定时任务时间及所需要的dmp文件路径 [mm1@localhost ~]$ crontab -e 0 0 * * *  sh /home/mm1/exp_table.sh  2>& ...

  8. JavaScript阻止冒泡和取消事件默认行为

    //功能:停止事件冒泡 function stopBubble(e) { if ( e && e.stopPropagation ) { e.stopPropagation(); } ...

  9. Java面试题之Java中==和equals()和hashCode()的区别

    “==”: ==是运算符,用来比较两个值.两个对象的内存地址是否相等: “equals()”: equals是Object类的方法,默认情况下比较两个对象是否是同一个对象,内部实现是通过“==”来实现 ...

  10. django无法同步数据库 Error loading MySQLdb module: No module named ‘MySQLdb‘

    最近在学习Python,打算先看两个在线教程,再在github上找几个开源的项目练习一下,在学到“被解放的姜戈”时遇到django同步数据库时无法执行的错误,记录一下. 错误现象: 执行python ...