Как я могу подключить мое приложение BlackBerry к API моего сайта отдыха? - PullRequest
0 голосов
/ 28 сентября 2011

Я пытаюсь создать свое первое приложение для мобильных устройств BlackBerry, но я новичок в разработке @ mobile и не могу найти правильный способ соединения моего приложения с моим API для отдыха в Интернете, может кто-нибудь подсказать мне, с чего начать?

Спасибо заранее: D

1 Ответ

1 голос
/ 28 сентября 2011
    HttpConnection conn = null;
    InputStream is = null;
    ByteArrayOutputStream bos = null;
    String response = null;
    String connectionURL = null;



    try {

        connectionURL = "THIS CONTAIN YOUR API URL"

        conn = (HttpConnection) Connector.open(connectionURL);
        conn.setRequestProperty("Content-Type","application/json");
        System.out.println("Response code : "+conn.getResponseCode());

        if(conn.getResponseCode() == HttpConnection.HTTP_OK)
        {

            is = conn.openInputStream();
            int ch=-1;
            bos = new ByteArrayOutputStream();
            while((ch = is.read())!=-1)
            {
                bos.write(ch);
            }
            response = new String(bos.toByteArray());
            System.out.println("Response : "+response);
        }
    } catch (Exception e) 
    {
        System.out.println("Exception .."+e);

    }finally 
    {

            if(conn != null)
                conn.close();
            if(is != null)
                is.close();
            if(bos != null)
                bos.close();
    }
...