Android Wear应用连接超时



我正在构建一个Android穿戴应用程序,它使用HTTPUrlConnection()从网页收集一些数据。这在模拟器中工作得很好,但在真正的设备上(我使用Moto 360进行测试)就不行。我在本地网络和外部网络上都运行了服务器,但不知何故,实际设备最终出现了连接超时。这也不是服务器的问题,因为我尝试了不同的电脑、不同的软件和带有不同路由器的不同网络。Android的清单看起来也不错。我做错了什么,或者这可能是一个bug?

try {
        // create the HttpURLConnection
        HttpURLConnection connection;
            connection = (HttpURLConnection) url.openConnection();
        // just want to do an HTTP GET here
        connection.setRequestMethod("GET");
        // uncomment this if you want to write output to this url
        //connection.setDoOutput(true);
        // give it 15 seconds to respond
        connection.setReadTimeout(15 * 1000);
        connection.connect();
        // read the output from the server
        reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        stringBuilder = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            stringBuilder.append(line + "n");
        }
        bodyHtml = stringBuilder.toString();
    } catch (Exception e) {
        e.printStackTrace();
        //throw e;
    } finally {
        // close the reader; this can throw an exception too, so
        // wrap it in another try/catch block.
        if (reader != null) {
            try {
                reader.close();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            }
        }
    }

清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="vendor.atestapp" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:name="android.hardware.type.watch" />
<service android:name=".WearMessageListenerService">
    <intent-filter>
        <action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
    </intent-filter>
</service>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.DeviceDefault" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

日志输出:

09-09 00:50:50.177    3664-8913/vendor.atestapp W/System.err﹕ java.net.ConnectException: failed to connect to /192.168.1.39 (port 8080): connect failed: ETIMEDOUT (Connection timed out)
09-09 00:50:50.177    3664-8913/vendor.atestapp W/System.err﹕ at libcore.io.IoBridge.connect(IoBridge.java:124)
09-09 00:50:50.177    3664-8913/vendor.atestapp W/System.err﹕ at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:183)
09-09 00:50:50.177    3664-8913/vendor.atestapp W/System.err﹕ at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:456)
09-09 00:50:50.177    3664-8913/vendor.atestapp W/System.err﹕ at java.net.Socket.connect(Socket.java:882)

找到问题了!HTTPUrlConnection在Wear上不起作用。谷歌禁用了它,但你可以完美地编写它。显然这是谷歌的某种政策,但他们忘了在模拟器中禁用它。

替代方案(这就是我现在怎么做的):在你的手机上使用HTTPUrlConnection,并使用MessageApi与你的Wear设备通信

Android watch将不会通过蓝牙连接到手机连接到互联网,UrlHTTPConnection被禁用,因为它不是一个佩戴问题,因为我将但是它将通过WiFi连接时连接。

不幸的是,2015年中期之前的大多数设备都不支持WiFi:-(更不幸的是,手持设备的Android Wear应用程序无法将手表上的蓝牙与世界上的互联网连接起来。

UrlHTTPConnection是启用的,因为它不是一个磨损问题。罪魁祸首是手持设备上的Wear-App。

显然,这是不可行的"终身"但好奇的是,如果你通过WiFi连接你的设备,并关闭手机上的蓝牙(它总是倾向于BT电源考虑)它会奇迹般地开始工作

相关内容

  • 没有找到相关文章

最新更新