连接拒绝android php服务器

时间:2013-05-16 06:37:45

标签: android

在我的应用程序中,我想将多个图像发布到服务器,包括音频和图像。 我正在使用 MultipartEntity ,但是当我调用post方法时,我正在使用HttpHostConnectionException: connection refused

这是我的代码:

MultipartEntity entity=new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);

String path="mnt/sdcard/TAUKY/PICTURE/IMAGE_20130507_170848.png";
File f = new File(path);

String audio_path="mnt/sdcard/TAUKY/SOUND/SOUND_20130513_185502.wav";

File f_auido=new File(audio_path);          
entity.addPart("image", new FileBody(f));           
entity.addPart("audio", new FileBody(f_auido));         
entity.addPart("taukyname", new StringBody("My tauky"));            
entity.addPart("userId", new StringBody("63"));

hpost.setEntity(entity);

HttpResponse response = htpclnt.execute(hpost);
HttpEntity resEntity = response.getEntity();

Toast.makeText(getApplicationContext(), "Sucess"+response, 1000).show();

1 个答案:

答案 0 :(得分:0)

检查您的清单文件。你有没有添加互联网权限。 和 在真实设备上测试。