我有 Android 设备 Samsung GT OS 2.2.1
我已经成功通过 WIFI 向我的本地主机(我的 Windows 8 PC)发送 HTTP 请求
但是,考虑到速度,我还想学习“如何通过 USB 将 HTTP 请求发送到我的 Windows 8 PC 的本地主机”
这是我通过 WIFI 发送的代码
URL url = null;
try {
/*Wireless LAN adapter Local Area Connection*/
url = new URL("http://192.168.xxx.xxx/MySkripsi/testWriteFile.php");
String body = "";
body += "text=" + messageTujuan;
byte[] bytes = body.getBytes();
HttpURLConnection conn = null;
conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");
OutputStream out = conn.getOutputStream();
out.write(bytes);
out.close();
int status = conn.getResponseCode();
if (status != 200) {
Toast.makeText(con, "status = " + status , 0).show();
}
else
{
InputStream is = conn.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder sb = new StringBuilder();
String line = null;
try {
while ((line = reader.readLine()) != null) {
sb.append((line + "\n"));
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
Toast.makeText(con, "Return Nya = " +sb.toString(), 0).show();
Log.v("TEST" , "Return Nya = " + sb.toString());
tv.setText(sb.toString());
is.close();
}
} catch (Exception e) {
Toast.makeText(this, e.toString() + "#" + e.getMessage(), 0).show();
}
这段代码,给我结果
但是每当我关闭WIFI时,它都会显示
“java.net.SocketException:网络无法访问”
所以我通过一些网站研究它,我发现了这个
http://www.codeproject.com/Articles/191930/Android-Usb-Port-Forwarding
这是打印屏幕
我的 android 设备中的 USB 隧道也说“服务正在运行,已连接!”
但是,使用与上面相同的代码,除了:
url = new URL("h**p://127.0.0.1:80/MySkripsi/testWriteFile.php");
结果是“java.netConnectException :/127.0.0.1:80 - 连接被拒绝”
我认为我的防火墙有问题,但我不知道如何修复它
所以我的问题是
有没有其他方法可以用来在android和服务器之间进行通信?
我真的需要我的 android 设备将数据发送到我的本地主机(Windows 8 pc)作为我的服务器并通过 USB 接收服务器的响应
谢谢..