Blackberry - How to render PDF document?

2019-03-06 08:32发布

How can I read .pdf file in BlackBerry through your own application?

2条回答
smile是对你的礼貌
2楼-- · 2019-03-06 08:42

There is no API, nor lib to do such thing in blackberry.

However you can try to integrate Google Docs or www.docspal.com or other server side rendering service.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-03-06 08:48

use google viewer inside your Browserfield, that will do the trick! =D!

public ScrLoad()
{     
String url = "http://docs.google.com/gview?embedded=true&url=http://prueba.agenciareforma.com/appiphone/android/elnorte.pdf";                
    add(new BrowserField(url));        
}

Google Docs Viewer http://docs.google.com/gview

查看更多
登录 后发表回答