Blackberry - How to render PDF document?
How can I read .pdf f开发者_如何学编程ile in BlackBerry through your own application?
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.
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
精彩评论