如何将我的黑莓应用程序连接到我的网站 Rest API?

发布于 2024-12-07 02:55:45 字数 108 浏览 0 评论 0原文

我正在尝试为黑莓手机构建我的第一个应用程序,但我是移动开发新手,我找不到将我的应用程序与我的 webiste Rest API 连接的正确方法,有人可以指导我从哪里开始吗?

提前谢谢:D

I am trying to build my first app for blackberry mobile's but i am new @ mobile development and i am cant find the correct way to connect my app with my webiste rest API can anyone guide me where to start from?

Thanx in advance :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妄断弥空 2024-12-14 02:55:45
    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();
    }
    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();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文