org.apache.http.conn.HttpHostConnectException: Connection to http://localhost refused in android

后端 未结 13 1849
一向
一向 2020-12-02 20:42

I am making an application that uploads images to server and updates its database to server in android while executing it, it shows an error

Connection to ht         


        
13条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-02 21:10

    i was facing exactly the same issue and i made following changes to my URL after which it was working perfectly fine..

    From:

    http://localhost/Image4android/get_all_images.php
    

    To:

    http://192.168.1.2/Image4android/get_all_images.php
    
    where the ip: 192.168.1.2 is IPv4 address. In windows Run > CMD > Ipconfig
    

提交回复
热议问题