0

私のアプリでは、サーバーからいくつかの画像をダウンロードする必要があります。このコードを使用して、バイト配列を取得します。

HttpConnection connection = null;
InputStream inputStream = null;
byte[] data = null;

try 
{ 
//connection = (HttpConnection)Connector.open(url);
connection = (HttpConnection)Connector.open(url, Connector.READ_WRITE, true);

        int responseCode = connection.getResponseCode();            
        if(responseCode == HttpConnection.HTTP_OK)
        {
            inputStream = connection.openInputStream();
            data = IOUtilities.streamToBytes(inputStream);  
            inputStream.close();
        }           
        connection.close();

        return data;
    }
    catch(IOException e)
    {
        return null;
    }

URL はサフィックス「;deviceSide=false;ConnectionType=MDS - public」(スペースなし) で形成されており、完全に機能しています。

問題は、SIM カードを持たない電話では、MDS サーバー経由でインターネットに接続できないことです。そこで、コネクション ファクトリを使用するように変更し、BB が必要なものを選択できるようにしました。

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

    if (connDesc != null)
    {
        final HttpConnection httpConn;
        httpConn = (HttpConnection)connDesc.getConnection();
        try
        {
            httpConn.setRequestMethod(HttpConnection.GET);
            final int iResponseCode = httpConn.getResponseCode();
            if(iResponseCode == HttpConnection.HTTP_OK)
            {
                InputStream inputStream = null;
                try{
                    inputStream = httpConn.openInputStream();
                    byte[] data = IOUtilities.streamToBytes(inputStream);   
                    return data;
                }
                catch(Exception e)
                {
                    e.printStackTrace();
                    return null;
                }
                finally{
                    try
                    {
                        inputStream.close();
                    } catch (IOException e)
                    {
                        e.printStackTrace();
                        return null;
                    }
                }
            }
        } 
        catch (IOException e) 
        {
            System.err.println("Caught IOException: " + e.getMessage());
        }
    }
    return null;

適切なプレフィックス (この場合は interface=wifi) が選択されるため、接続は機能しますが、これにより別の問題が生じます。

一部の画像はうまくダウンロードされず、一部の画像 (試行ごとに同じではありません) が破損していますが、これは電話が Wi-Fi 接続を使用してこれらの画像を取得した場合に限られます。

この問題を回避するにはどうすればよいですか? 接続を取得するにはどのような方法を使用する必要がありますか? ユーザーが MDS-public を使用するために SIM カードを持っているかどうかを確認することはできますか?

破損したイメージの例を次に示します。

エラー画像 http://nsa30.casimages.com/img/2012/06/28/120628033716123822.png

4

3 に答える 3

1

これを試して:

public static String buildURL(String url) {
    String connParams = "";


        if (WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED) {
            connParams = ";interface=wifi"; //Connected to a WiFi access point.
        } else {
            int coverageStatus = CoverageInfo.getCoverageStatus();
            //
            if ((coverageStatus & CoverageInfo.COVERAGE_BIS_B) == CoverageInfo.COVERAGE_BIS_B) {
                connParams = ";deviceside=false;ConnectionType=mds-public";
            } else if ((coverageStatus & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT) {
                // Have network coverage and a WAP 2.0 service book record
                ServiceRecord record = getWAP2ServiceRecord();
                //
                if (record != null) {
                    connParams = ";deviceside=true;ConnectionUID=" + record.getUid();

                } else {
                    connParams = ";deviceside=true";
                }
            } else if ((coverageStatus & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS) {
                // Have an MDS service book and network coverage
                connParams = ";deviceside=false";
            }
        }

       Log.d("connection param"+url+connParams);

    //
    return url+connParams;
}

private static ServiceRecord getWAP2ServiceRecord() {
    String cid;
    String uid;
    ServiceBook sb = ServiceBook.getSB();
    ServiceRecord[] records = sb.getRecords();
    //
    for (int i = records.length -1; i >= 0; i--) {
        cid = records[i].getCid().toLowerCase();
        uid = records[i].getUid().toLowerCase();
        //
        if (cid.indexOf("wptcp") != -1 
                && records[i].getUid().toLowerCase().indexOf("wap2") !=-1 
                && uid.indexOf("wifi") == -1 
                && uid.indexOf("mms") == -1) {
            return records[i];
        }
    }
    //
    return null;
}
于 2012-07-09T12:19:07.387 に答える
0

BIS_B(MDSパブリック)のカバレッジが十分であるかどうかを確認できますが、SIMを使用しないユーザーをサポートしようとしている場合は役に立ちません。問題はWi-Fiの接続とIOUtilities.streamToBytes()の比較できないことにあるのだろうか。APIドキュメントで推奨されているようにコーディングしてみてください。

于 2012-06-28T15:21:42.107 に答える
0

interface=wifi を追加するとどうなりますか? 以下の KB 記事に添付されているネットワーク診断ツールを実行し、SIM を取り外した状態ですべてのテストを実行できますか

http://supportforums.blackberry.com/t5/Java-Development/What-Is-Network-API-alternative-for-legacy-OS/ta-p/614822

また、BES/MDS を介して大きなファイルをダウンロードする場合、MDS によって課される制限があることに注意してください。以下の KB 記事http://supportforums.blackberry.com/t5/Java-Development/Download-large-files-using-the-BlackBerry-Mobile-Data-System/ta-p/44585を確認して ください。

于 2012-07-05T23:21:20.310 に答える