gpt4 book ai didi

android - 在android中将图像和视频发送到服务器

转载 作者:太空宇宙 更新时间:2023-11-03 10:21:50 25 4
gpt4 key购买 nike

我正在创建一个用于拍摄照片和视频的 Android 应用程序。捕获图像后,我想将带有日期和一些文本的图像发送到 Web 服务器。在服务器端,我正在使用这些图片和视频制作应用程序。拍摄的图像将保存在存储卡中。如何使用 JSON 发送带有文本的图像。我还想将视频发送到网络服务器。

最佳答案

您可以使用多部分发布请求来执行此操作:(这样,您不需要创建 json)

        HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(serverURL);
MultipartEntity postEntity = new MultipartEntity();
File file = new File("Your File path on SD card");
postEntity.addPart("fileupload", new FileBody(file, "image/jpeg"));
postEntity.addPart("loginKey", new StringBody(""+loginKey));
postEntity.addPart("message", new StringBody(message));
postEntity.addPart("token", new StringBody(token));
post.setEntity(postEntity);
response = client.execute(post);

你必须添加这个 mime4j图书馆。

关于android - 在android中将图像和视频发送到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19291544/

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