package com.spring.sky.image.upload.network;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.UUID;
import android.util.Log;
/**
*
* 上传工具类
* @author spring sky
* Email:vipa1888@163.com
* QQ:840950105
* MyName:石明政
*/
public class UploadUtil {
private static final String TAG = "uploadFile";
private static final int TIME_OUT = 10*1000; //超时时间
private static final String CHARSET = "utf-8"; //设置编码
/**
* android上传文件到服务器
* @param file 需要上传的文件
* @param RequestURL 请求的rul
* @return 返回响应的内容
*/
public static String uploadFile(File file,String RequestURL)
{
String result = null;
String BOUNDARY = UUID.randomUUID().toString(); //边界标识 随机生成
String PREFIX = "--" , LINE_END = "\r\n";
String CONTENT_TYPE = "multipart/form-data"; //内容类型
try {
URL url = new URL(RequestURL);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(TIME_OUT);
conn.setConnectTimeout(TIME_OUT);
conn.setDoInput(true); //允许输入流
conn.setDoOutput(true); //允许输出流
conn.setUseCaches(false); //不允许使用缓存
conn.setRequestMethod("POST"); //请求方式
conn.setRequestProperty("Charset", CHARSET); //设置编码
conn.setRequestProperty("connection", "keep-alive");
conn.setRequestProperty("Content-Type", CONTENT_TYPE + ";boundary=" + BOUNDARY);
if(file!=null)
{
/**
* 当文件不为空,把文件包装并且上传
*/
DataOutputStream dos = new DataOutputStream( conn.getOutputStream());
StringBuffer sb = new StringBuffer();
sb.append(PREFIX);
sb.append(BOUNDARY);
sb.append(LINE_END);
/**
* 这里重点注意:
* name里面的值为服务器端需要key 只有这个key 才可以得到对应的文件
* filename是文件的名字,包含后缀名的 比如:abc.png
*/
sb.append("Content-Disposition: form-data; name=\"img\"; filename=\""+file.getName()+"\""+LINE_END);
sb.append("Content-Type: application/octet-stream; charset="+CHARSET+LINE_END);
sb.append(LINE_END);
dos.write(sb.toString().getBytes());
InputStream is = new FileInputStream(file);
byte[] bytes = new byte[1024];
int len = 0;
while((len=is.read(bytes))!=-1)
{
dos.write(bytes, 0, len);
}
is.close();
dos.write(LINE_END.getBytes());
byte[] end_data = (PREFIX+BOUNDARY+PREFIX+LINE_END).getBytes();
dos.write(end_data);
dos.flush();
/**
* 获取响应码 200=成功
* 当响应成功,获取响应的流
*/
int res = conn.getResponseCode();
Log.e(TAG, "response code:"+res);
// if(res==200)
// {
Log.e(TAG, "request success");
InputStream input = conn.getInputStream();
StringBuffer sb1= new StringBuffer();
int ss ;
while((ss=input.read())!=-1)
{
sb1.append((char)ss);
}
result = sb1.toString();
Log.e(TAG, "result : "+ result);
// }
// else{
// Log.e(TAG, "request error");
// }
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
}
///**
// * 添加超时和代理
// * @param context
// * @return
// */
//private static HttpClient getHttpClient(Context context)
//{
// BasicHttpParams httpParams = new BasicHttpParams();
// HttpConnectionParams.setConnectionTimeout(httpParams, 10000);
// HttpConnectionParams.setSoTimeout(httpParams, 10000);
// HttpClient client = new DefaultHttpClient(httpParams);
// WifiManager manager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
// if (!manager.isWifiEnabled()) {
// Uri uri = Uri.parse("content://telephony/carriers/preferapn");
// Cursor mCursor = context.getContentResolver().query(uri, null, null, null, null);
// if (mCursor != null && mCursor.moveToFirst()) {
// String proxyStr = mCursor.getString(mCursor.getColumnIndex("proxy"));
// if (proxyStr != null && proxyStr.trim().length() > 0) {
// HttpHost proxy = new HttpHost(proxyStr, 80);
// client.getParams().setParameter(
// ConnRouteParams.DEFAULT_PROXY, proxy);
// }
// }
// }
//
// return client;
//}
没有合适的资源?快使用搜索试试~ 我知道了~
android上传图片完整代码
共25个文件
class:9个
java:3个
png:3个
5星 · 超过95%的资源 需积分: 50 485 下载量 146 浏览量
2011-12-22
14:19:25
上传
评论 8
收藏 55KB RAR 举报
温馨提示
android选择图片上传,包含图片的预览,服务器端代码没有,只是客户端android代码,大家在使用过程中有问题联系我 QQ:840950105 Email:vipa1888@163.com author:spring sky
资源推荐
资源详情
资源评论
收起资源包目录
androidImageUpload.rar (25个子文件)
androidImageUpload
AndroidManifest.xml 776B
res
layout
main.xml 723B
drawable-ldpi
icon.png 2KB
drawable-mdpi
icon.png 3KB
drawable-hdpi
icon.png 4KB
values
strings.xml 182B
proguard.cfg 1KB
src
com
spring
sky
image
upload
MainActivity.java 4KB
network
UploadUtil.java 5KB
bin
com
spring
sky
image
upload
MainActivity$1.class 969B
R.class 594B
MainActivity.class 5KB
R$layout.class 421B
R$attr.class 367B
network
UploadUtil.class 4KB
R$id.class 484B
R$string.class 454B
R$drawable.class 427B
classes.dex 9KB
resources.ap_ 11KB
androidImageUpload.apk 17KB
.classpath 280B
assets
default.properties 362B
.project 854B
gen
com
spring
sky
image
upload
R.java 861B
共 25 条
- 1
spring_sky_
- 粉丝: 259
- 资源: 31
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
- 4
- 5
- 6
前往页