我正在尝试在 android 中使用客户端/服务器端应用程序。我有一个简单地获取或发布数据的 php 文件。在 Android 上,我有一个从服务器文件获取和发布数据的活动。我在访问位于 android 上的文件时遇到问题,c://xampp/htdocs/Project/server.php
我有这些代码行:
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)