在Android应用程序中设置URL?

时间:2015-11-10 09:17:41

标签: android http url post ip

在我的Android应用程序中,我想连接到服务器/网络主机上的PHP文件。目前我无法将POST数据发送到PHP文件,我想我正在以格式错误传递网址。

使用Google网址作为示例,为了建立PHP文件的路径,这是正确的吗?

URL url = new URL("http://74.125.224.72/myFile.php");

1 个答案:

答案 0 :(得分:2)

您的网址似乎有额外的空间

URL url = new URL("http://74.125.224.72 /myFile.php");

必须是

URL url = new URL("http://74.125.224.72/myFile.php");

编辑您还可以使用android Uri类并使用Uri.Builder

构建它
Uri uri = new Uri.Builder()
    .scheme("http")
    .authority("74.125.224.72")
    .appendPath("myFile.php")
    .build();