Android-上传图片(-)_HttpURLConnection
【摘要】
继选择图片相册并通过ImageView展示在Activity中,获取到图片真实路径后(详见Android获取相册中图片的路径 4.4版本前后的变化), 将通过以下两种方式(当然了不止这两种)将获取到的图...
继选择图片相册并通过ImageView展示在Activity中,获取到图片真实路径后(详见Android获取相册中图片的路径 4.4版本前后的变化),
将通过以下两种方式(当然了不止这两种)将获取到的图片上传到服务端,仅涉及客户端代码部分。
- 使用HttpURLConnection的方式模拟拼装HTTP请求
- 使用HttpClient(6.0已经废弃了HttpClient,但是还有有必要记录下)
本篇博客将主要记录第一种方式,下篇将记录第二种方式。
主要是模拟HTTP请求,以及流的处理。
核心代码如下,详情请移步本人GITHUB
try {
// 实例化URL
URL httpURL = new URL(url);
// 打开连接
HttpURLConnection connection = (HttpURLConnection) httpURL.openConnection();
/**设置connection属性 ,拼装HTTP请求协议**/
//允许输入流 输出流 不使用缓存
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setUseCaches(false);
// 以POST的方式提交
connection.setRequestMethod("POST");
// 设置超时时间
connection.setReadTimeout(5 * 1000);
connection.setConnectTimeout(5 * 1000);
// 设置RequestProperty
connection.setRequestProperty("Connection", "Keep-Alive");
connection.setRequestProperty("Charset", "UTF-8");
connection.setRequestProperty("Content-Type", CONTENT_TYPE + "; boundary=" + BOUNDARY);
// 构造DataOutputStream
DataOutputStream ds = new DataOutputStream(connection.getOutputStream());
/** 模拟拼装请求正文头 在浏览器开发者工具中F12网络中可以查看
-----------------------------7df2cd15150370 (这个BOUNDARY比请求头的多--,所以定义了个prefix)
Content-Disposition: form-data; name="file"; filename="C:\Users\Mr.Yang\Desktop\girl.jpg"
Content-Type: image/jpeg
-----------------------------7df2cd15150370--
**/
// 模拟 -----------------------------7df2cd15150370
ds.writeBytes(PREFIX + BOUNDARY + LINE_END);
ds.writeBytes("Content-Disposition: form-data; "
+ "name=\"file\";filename=\"" + file.getName() + "\"" + LINE_END);
ds.writeBytes(LINE_END);
// 构建要上传的文件的FileInputStream
FileInputStream fis = new FileInputStream(file);
// 设置每次写入1024 * 4 bytes
byte[] buffer = new byte[1024 * 4];
int len = -1;
// 从文件读取数据至缓冲区
while ((len = fis.read(buffer)) != -1) {
// 将资料写入DataOutputStream中
ds.write(buffer, 0, len);
}
// 模拟换行符
ds.writeBytes(LINE_END);
// 模拟结尾的信息
ds.writeBytes(PREFIX + BOUNDARY + PREFIX + LINE_END);
// Flushes this stream to ensure all pending data is sent out to the target
ds.flush();
/** 接收服务端的返回信息**/
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
StringBuffer sb = new StringBuffer();
String line;
while ((line = reader.readLine()) != null) {
sb.append(line);
}
LogUtils.d("服务端返回:" + sb.toString());
// 关闭流
if (fis != null) {
fis.close();
}
if (reader != null) {
reader.close();
}
if (ds != null) {
ds.close();
}
// 发送消息,在主线程更新提示信息
Message message = new Message();
message.what = 1;
message.obj = sb.toString();
handler.sendMessage(message);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
文章来源: artisan.blog.csdn.net,作者:小小工匠,版权归原作者所有,如需转载,请联系作者。
原文链接:artisan.blog.csdn.net/article/details/50033889
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)