在黑莓中将字节转换为可读的字符串格式?

时间:2012-08-22 09:00:30

标签: blackberry httpresponse

我正在开发一个BB应用程序,我需要在其中维护一个HTTP连接,并使用一个存储在服务器上的图像名称来获取该图像文档中写入的文本。

我收到了RTF格式的回复。 当我在打开的浏览器Chrome上直接点击服务器时,我的RTF文件被下载了。 现在我需要以编程方式执行该操作,

1) Either convert the bytes which are coming in response in a simple string format so that I can read that.

2) Download the file as its happening on the browser manually so that by reading that file I read the information written in the document.

请建议我如何通过点击任何URL来读取服务器中的数据?

目前我正在使用此代码:

try {
    byte []b = send("new_image.JPG");
    String s = new String(b, "UTF-8");
    System.out.println(s);
    } catch (Exception e) {
    e.printStackTrace();
    }

public byte[] send(String Imagename) throws Exception
    {
        HttpConnection hc = null;
        String imageName = "BasicExp_1345619462234.jpg";
            InputStream is = null;
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            byte[] res = null;

        try
        {
        hc = (HttpConnection) Connector.open("http://webservice.tvdevphp.com/basisexpdemo/webservices/ocr.php?imgname="+imageName);
            hc.setRequestProperty("Content-Type", "multipart/form-data;");
        hc.setRequestMethod(HttpConnection.GET);
            int ch;
        StringBuffer sb= new StringBuffer();
        is = hc.openInputStream();
            while ((ch = is.read()) != -1)
            {
            bos.write(ch);
            sb.append(ch);
            }
        System.out.println(sb.toString());
        res = bos.toByteArray();
        }
        catch(Exception e){
            e.printStackTrace();
        }
        finally
        {
            try
            {
                if(bos != null)
                    bos.close();

                if(is != null)
                    is.close();

                if(hc != null)
                    hc.close();
            }
            catch(Exception e2)
            {
                e2.printStackTrace();
            }
        }
        return res;
    }

回复如下:

{\ RTF1 \ ANSI \ ansicpg1252 \ UC1 \ deflang1033 \ adeflang1033 ...................

我可以读取数据,但它没有格式化,因此我也可以通过编程方式阅读。

1 个答案:

答案 0 :(得分:0)

我完成了这项任务.... 实际上错误是在服务器端。 当他们执行OCR时,格式参数没有被纠正,这是理由。