0

しばらくの間、この問題が発生しています。画像の場所をエコーするphpスクリプトに接続しようとしていますが、最終的にアプリに画像を表示しようとしています。ただし、php スクリプトに接続しているかどうかさえわかりません。

「http 接続でエラーが発生しました。unknownhost エラーです...」

ありがとう。

試す {

            // Execute HTTP Post Request
            ResponseHandler<String> responseHandler=new BasicResponseHandler();

            String responseBody = httpclient.execute(httppost, responseHandler);
            Log.d("test", responseBody); 
           // Toast.makeText(getApplicationContext(), responseBody, Toast.LENGTH_LONG).show();

         // Loader image - will be shown before loading image
            int loader = R.drawable.icon;

            // Imageview to show
            ImageView image = (ImageView) findViewById(R.id.image);

            // Image url
            String image_url = "http://www.xxx.php";
            String fullUrl = "http://www.xxx.php"+responseBody;
            test.setText(fullUrl);
            // ImageLoader class instance
            ImageLoader imgLoader = new ImageLoader(getApplicationContext());

            // whenever you want to load an image from url
            // call DisplayImage function
            // url - image url to load
            // loader - loader image, will be displayed before getting image
            // image - ImageView
            imgLoader.DisplayImage(fullUrl, loader, image);



        } catch (ClientProtocolException e) {
            // TODO Auto-generated catch block
        } catch (IOException e) {
            // TODO Auto-generated catch block
        }
4

1 に答える 1

0

Is it on the emulator??
If so try to add it the dns..

Window>Preferences>Android>Launch
Default emulator options: -dns-server 8.8.8.8,8.8.4.4
于 2013-06-30T04:05:58.710 に答える