在Android中访问PHP文件时出现FileNotFoundException

时间:2013-04-09 11:26:28

标签: android httpclient filenotfoundexception

我在android中试用Client / Server端应用程序。我有一个php文件,只需获取或发布数据。在Android上我有一个从服务器文件获取和发布数据的活动。我在访问位于c://xampp/htdocs/Project/server.php的文件时有问题,而在android中我有这些代码行:

URL url = new URL("http://192.178.10.54/xampp/htdocs/Project1/server.php");
URLConnection connection = url.openConnection();

但是当我运行我的应用程序时,会发生以下异常行:

04-09 16:18:21.484: W/System.err(7752):java.io.FileNotFoundException: http://192.178.10.54/xampp/htdocs/Project1/server.php
04-09 16:18:21.664: W/System.err(7752):     at libcore.net.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:177)
04-09 16:18:21.664: W/System.err(7752):     at com.android.ServerInterface.executeHttpRequest(ServerInterface.java:111)
04-09 16:18:21.664: W/System.err(7752):     at com.android.ServerInterface.getAnimalList(ServerInterface.java:60)
04-09 16:18:21.664: W/System.err(7752):     at com.android.AndroidListClient$GetListTask.doInBackground(AndroidListClient.java:106)
04-09 16:18:21.664: W/System.err(7752):     at com.android.AndroidListClient$GetListTask.doInBackground(AndroidListClient.java:1)

1 个答案:

答案 0 :(得分:0)

URL url = new URL("http://192.168.10.54/xampp/htdocs/Project1/server.php");
URLConnection connection = url.openConnection();