gpt4 book ai didi

android - 我想使用 post 方法发送图像

转载 作者:太空狗 更新时间:2023-10-29 15:09:35 26 4
gpt4 key购买 nike

我想在网络服务器上发送图片文件,但在运行这段代码时出现错误。

hc = new DefaultHttpClient();

URI u = null;
try {
u = new URI(params[0]);
HttpPost hp = new HttpPost();
hp.setURI(u);


System.out.println("start");
MultipartEntity mp=new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
System.out.println("mul");
FileBody fb=new FileBody(new File("akash/res/drawable-hdpi/hp.jpg"),"image/jpg");
fb.getMediaType();
mp.addPart("picture",fb);

System.out.println("add picture");
hp.setEntity(mp);
System.out.println("set entity");

HttpResponse hr = null;
hr = hc.execute(hp);
System.out.println(hr.getStatusLine().getStatusCode());

最佳答案

您是否在 list 中授予了互联网使用权限?

<uses-permission android:name="android.permission.INTERNET" />

关于android - 我想使用 post 方法发送图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18086717/

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