我想开发一款应用程序,可让两部Android手机通过Wifi网络交换数据。由于我目前没有两部手机,我想我可以尝试使用1个充当服务器的应用程序和另一个连接到172.0.0.1作为客户端的应用程序。
在Server-App中,我启动一个运行NanoHTTPD服务器的服务。作为测试,当我要求http://172.0.0.1:8080/hallo/
时,我想接收“Hallo Client”。这适用于普通的Android浏览器。
这就是服务器的样子:
@Override
public Response serve(String uri, String method, Properties header, Properties parms, Properties files)
{
Log.d("HServer", "httpd request >>" + method + " '" + uri + "' " + " " + parms);
if (uri.startsWith("/hallo/"))
{
return new Response(HTTP_OK, MIME_PLAINTEXT, "Hallo Client");
}
else
{
return new Response(HTTP_OK, MIME_PLAINTEXT, "");
}
}
然后我在Google示例之后使用HttpURLConnection进行了一个简单测试的第二个应用程序:
private String NetworkResponse;
private Runnable Erg = new Runnable()
{
@Override
public void run()
{
// TODO Auto-generated method stub
TV1.setText(NetworkResponse);
Log.d("bla", NetworkResponse);
}
};
public void Request(View view)
{
mHandler = new Handler();
Thread T = new Thread(new Runnable()
{
@Override
public void run()
{
HttpURLConnection urlConnection = null;
try
{
URL url = new URL("http://172.0.0.1:8080/hallo/");
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setReadTimeout(10000);
urlConnection.setConnectTimeout(10000);
BufferedInputStream in = new BufferedInputStream(urlConnection.getInputStream());
NetworkResponse = readIt(in,1000);
mHandler.post(Erg);
}
catch (MalformedURLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
finally
{
urlConnection.disconnect();
}
}
});
T.start();
}
private String readIt(BufferedInputStream stream, int len) throws IOException, UnsupportedEncodingException
{
Reader reader = null;
reader = new InputStreamReader(stream, "UTF-8");
char[] buffer = new char[len];
reader.read(buffer);
return new String(buffer);
}
}
当网址类似于http://en.wikipedia.org
但不包含http://172.0.0.1:8080/hallo/
时,此代码有效。我得到了
07-12 01:20:00.398: W/System.err(17234): java.net.SocketTimeoutException: failed to connect to /172.0.0.1 (port 8080) after 10000ms.
所以我的问题是:为什么Android浏览器会从我的简单服务器收到答案,而我自己的应用程序却没有?我使用HttpURLConnection的方式有问题吗? (P.S:我没有使用模拟器,每个都在真正的手机上,两个应用程序都拥有所有权限)
答案 0 :(得分:0)
您可能需要尝试127.0.0.1而不是172.0.0.1。