gpt4 book ai didi

java - 以编程方式在android上通过imgur上传照片

转载 作者:搜寻专家 更新时间:2023-11-01 09:12:41 28 4
gpt4 key购买 nike

我在使用 imgur 的 API 上传照片和显然检索链接方面需要帮助。

图像接口(interface): http://api.imgur.com/resources_anon

我可以获取需要上传的图片的 URI,但我该如何实现上面的 api,我已经下载了 mime4j 和 httpmime 并将它们添加到库中,但我似乎无法理解如何使用它们,

我看了这个,但它让我感到困惑: Sending images using Http Post

最佳答案

只是快速浏览一下 imgurthis question ,我想出了(几乎只是将两者结合起来)以下内容。如果它不起作用,请告诉我。

Bitmap bitmap = yourBitmapHere;

// Creates Byte Array from picture
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); // Not sure whether this should be jpeg or png, try both and see which works best
URL url = new URL("http://api.imgur.com/2/upload");

//encodes picture with Base64 and inserts api key
String data = URLEncoder.encode("image", "UTF-8") + "=" + URLEncoder.encode(Base64.encode(baos.toByteArray(), Base64.DEFAULT).toString(), "UTF-8");
data += "&" + URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode(YOUR_API_KEY, "UTF-8");

// opens connection and sends data
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

编辑:看来我们需要将 Base64.DEFAULT 作为第二个选项传递给 Base64.encode。更新了上面的示例。

编辑 2:您可以根据 the oracle site 使用以下代码吗? ,并报告它输出的内容:

BufferedReader in = new BufferedReader(
new InputStreamReader(
conn.getInputStream()));

String inputLine;

while ((inputLine = ic.readLine()) != null)
System.out.println(inputLine);
in.close();

关于java - 以编程方式在android上通过imgur上传照片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7111751/

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