0

我有 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

这是打印屏幕

http://imgur.com/QmHToQU

我的 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 接收服务器的响应

谢谢..

4

2 回答 2

1

谢谢@Ram 和@chyrlis

我想分享它,也许它会帮助其他人

所以我到处搜索,他们都告诉我有关usb tether的信息

这是我为解决自己的问题所做的

  1. 在我的电脑中,我输入 cmd > ipconfig

我的安卓设备没有以太网

  1. 我打开“USB TETHERING”(我正在使用 Android Froyo GT-S5830)(请注意,当我用谷歌搜索时,他们都告诉我并非每个设备都有“USB TETHERING”)

  2. 然后我再次输入 cmd > ipconfig

我的安卓设备有一个以太网,ip = 192.168.42.201(注意这个IP是动态的[DHCP],所以也许你可以先把它改成静态的)这里是教程 http://www.youtube.com /watch?v=SIYyRYdV7B8

所以我将我的 IP 更改为 192.168.42.202

  1. 使用我自己的代码

我将网址更改为

"url = new URL("http://192.168.42.202/MySkripsi/testWriteFile.php");" 

注意 192.168.42.201 是我从 ipconfig 获得的 IP,我将 IP 更改为 192.168.42.202 所以它将是静态 IP

  1. 和 BAM 就在那里,我可以使用我的设备的 http 请求并从我的服务器获取响应

希望能帮助到你

于 2013-09-05T06:11:46.957 回答
0

好吧,我开发了一个连接我的 jsp 文件的应用程序。这里是示例代码。

              try
                 {

                    URL url = new URL("http:/xx.xxx.xxx.x:80/sample.jsp");
                    HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
                     InputStream in = new BufferedInputStream(urlConnection.getInputStream());
                     BufferedReader r = new BufferedReader(new InputStreamReader(in));
                     String x = "";
                     String total = "";
                     int i=0;
                     ArrayList<String> content = new ArrayList();
                     while((x = r.readLine()) != null)
                     {
                                 content.add(x);

                     }
                     in.close();
                     r.close();
                 }
                 catch(Exception e)
                 {
                     e.printStackTrace();
                     Toast.makeText(Customer.this, e.toString(), Toast.LENGTH_SHORT).show();
                 }

因此,您可以根据需要更改(在 url 中)此代码。如果您想在 USB 中运行,则必须将三星 USB 驱动程序下载到您的 PC,然后运行该应用程序。在此之前,您启用开发人员选项在您的设备。

于 2013-09-04T07:19:12.077 回答