博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安卓下文件上传
阅读量:4984 次
发布时间:2019-06-12

本文共 995 字,大约阅读时间需要 3 分钟。

 

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
public
void
upload(View viwe){
        
HttpClient client =
new
HttpClient();
         
PostMethod filePost =
new
PostMethod(
""
);;
        
try
{
            
String path = et_path.getText().toString().trim();
            
File file =
new
File(path);
            
if
(file.exists()&&file.length()>
0
){
                
Part[] parts = {
new
StringPart(
"nameaaaa"
,
"valueaaa"
), 
                      
new
StringPart(
"namebbb"
,
"valuebbb"
), 
                      
new
FilePart(
"pic"
,
new
File(file.getAbsolutePath()))};
              
filePost.setRequestEntity(
new
MultipartRequestEntity(parts, filePost.getParams()));
              
client.getHttpConnectionManager().getParams()
                  
.setConnectionTimeout(
5000
);
              
int
status = client.executeMethod(filePost);
              
if
(status ==
200
){
                  
Toast.makeText(
this
,
"上传成功"
,
1
).show();
              
}
else
{
                  
Toast.makeText(
this
,
"上传失败"
,
1
).show();
              
}
                
            
}
            
else
{
                
Toast.makeText(
this
,
"上传的文件不存在"
,
0
).show();
            
}
        
}
catch
(Exception e) {
            
e.printStackTrace();
            
filePost.releaseConnection();
        
}
          
    
}

 

转载于:https://www.cnblogs.com/feelbest/p/3696249.html

你可能感兴趣的文章
几何建模
查看>>
java crm 系统 进销存 springmvc SSM项目项目源码
查看>>
jQuery.extend 函数详解
查看>>
<jQuery> 一. jQuery简介及优点
查看>>
架构相关概念——学习笔记
查看>>
被称为“开发者神器”的GitHub,到底该怎么用?
查看>>
(坑集)Django环境配置
查看>>
利用padding-top/padding-bottom百分比,进行占位和高度自适应
查看>>
常用的监控系统资源的工具
查看>>
08ssm三大框架整合以前步骤
查看>>
R语言学习笔记之八
查看>>
正则表达式语法(msdn)
查看>>
MySQL 数据类型 详解 (转载)
查看>>
Maven学习笔记(一)
查看>>
分割线
查看>>
xls的读写
查看>>
用函数创建子进程
查看>>
Myeclipse配置插件
查看>>
gitlab配置通过smtp发送邮件(QQ exmail腾讯企业为例)
查看>>
蓝桥杯之入学考试
查看>>