黑莓连接梦魇

时间:2012-02-06 09:07:39

标签: java eclipse debugging http blackberry

我正忙着编写一个程序,通过手机将GPS坐标传输到服务器,然后将坐标用于计算。但我经常用黑莓打墙。我已经构建了Android应用程序,它运行良好,但似乎无法联系真正的黑莓设备上的服务器。我已经在模拟器中测试了应用程序并且它运行良好但是当我在真实手机上安装它时我没有请求手机。

我已经阅读了很多关于要添加到网址末尾的秘密字符串,所以我调整了一些演示代码,以便为我提供第一个可用的传输但仍然没有...

应用程序已签名,我通常会通过eclipse调试或直接从.jad文件在设备上安装它,并允许应用程序获得所需的权限。

当前代码改编自Blackberry SDK中的HTTP连接演示。

你能看看并给我一些指导。我在这里失去了太多头发......

持续运行的后端服务:

public void run() {

        System.out.println("Starting Loop");

        Criteria cr = new Criteria();
        cr.setHorizontalAccuracy(Criteria.NO_REQUIREMENT);
        cr.setVerticalAccuracy(Criteria.NO_REQUIREMENT);
        cr.setCostAllowed(false);
        cr.setPreferredPowerConsumption(Criteria.NO_REQUIREMENT);
        cr.setPreferredResponseTime(1000);
        LocationProvider lp = null;
        try {
            lp = LocationProvider.getInstance(cr);
        } catch (LocationException e) {
            System.out.println("*****************Exception" + e);
        }
        if (lp == null) {
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    Dialog.alert("GPS not supported!");
                    return;
                }
            });
        } else {

            System.out
                    .println(lp.getState() + "-" + LocationProvider.AVAILABLE);

            switch (lp.getState()) {
            case LocationProvider.AVAILABLE:
                // System.out.println("Provider is AVAILABLE");
                while (true) {
                    Location l = null;
                    int timeout = 120;
                    try {
                        l = lp.getLocation(timeout);
                        final Location fi = l;

                        System.out.println("Got a Coordinate "
                                + l.getQualifiedCoordinates().getLatitude()
                                + ", "
                                + l.getQualifiedCoordinates().getLongitude());

                        System.out.println("http://" + Constants.website_base
                                + "/apis/location?device_uid=" + Constants.uid
                                + "&lat="
                                + l.getQualifiedCoordinates().getLatitude()
                                + "&lng="
                                + l.getQualifiedCoordinates().getLongitude());

                        if (!_connectionThread.isStarted()) {
                            fetchPage("http://"
                                    + Constants.website_base
                                    + "/apis/location?device_uid="
                                    + Constants.uid
                                    + "&lat="
                                    + l.getQualifiedCoordinates().getLatitude()
                                    + "&lng="
                                    + l.getQualifiedCoordinates()
                                            .getLongitude());
                        } else {
                            createNewFetch("http://"
                                    + Constants.website_base
                                    + "/apis/location?device_uid="
                                    + Constants.uid
                                    + "&lat="
                                    + l.getQualifiedCoordinates().getLatitude()
                                    + "&lng="
                                    + l.getQualifiedCoordinates()
                                            .getLongitude());
                        }

                        Thread.sleep(1000 * 60);

                    } catch (LocationException e) {
                        System.out.println("Location timeout");
                    } catch (InterruptedException e) {
                        System.out.println("InterruptedException"
                                + e.getMessage());
                    } catch (Exception ex) {
                        System.err.println(ex.getMessage());
                        ex.printStackTrace();
                    }
                }
            }
    }

我的联系是:

ConnectionFactory connFact = new ConnectionFactory();
ConnectionDescriptor connDesc = connFact.getConnection(getUrl());

// Open the connection and extract the data.
try {
    // StreamConnection s = null;
    // s = (StreamConnection) Connector.open(getUrl());
    HttpConnection httpConn = (HttpConnection) connDesc.getConnection();
    /* Data is Read here with a Input Stream */

任何想法?

1 个答案:

答案 0 :(得分:0)

想出来了!

使用我在网上找到的功能来确定哪个;通过使用大量Try / Catch进行连接时使用的扩展名。然后必须设置Internet APN设置。我在南非使用Vodacom,所以APN是“互联网”,没有密码。

只剩下头发......