在我的Android
应用程序中,我想连接到服务器/网络主机上的PHP
文件。目前我无法将POST
数据发送到PHP
文件,我想我正在以格式错误传递网址。
使用Google网址作为示例,为了建立PHP文件的路径,这是正确的吗?
URL url = new URL("http://74.125.224.72/myFile.php");
答案 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();