gpt4 book ai didi

android - 如何使用 http 将 Android 中的文件从移动设备发送到服务器?

转载 作者:IT老高 更新时间:2023-10-28 13:14:38 24 4
gpt4 key购买 nike

在 android 中,如何使用 http 将文件(数据)从移动设备发送到服务器。

最佳答案

很简单,您可以使用 Post 请求并将文件作为二进制(字节数组)提交。

String url = "http://yourserver";
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath(),
"yourfile");
try {
HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(url);

InputStreamEntity reqEntity = new InputStreamEntity(
new FileInputStream(file), -1);
reqEntity.setContentType("binary/octet-stream");
reqEntity.setChunked(true); // Send in multiple parts if needed
httppost.setEntity(reqEntity);
HttpResponse response = httpclient.execute(httppost);
//Do something with response...

} catch (Exception e) {
// show error
}

关于android - 如何使用 http 将 Android 中的文件从移动设备发送到服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4126625/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com