Displaying HTML Content in Blackberry Browser Field? -


i not able display html content in browser field. used utf-8 encoding method. html content

<!doctype html public '-//w3c//dtd html 4.01 transitional//en'><html><head><title></title></head><body><p><strong>welcome &hellip; </strong></p> <p style="text-align: center;"><span style="color: #003366;">warning! - life may never same after downloading cool &#039;know yourself&#039; tool&hellip; , it&#039;s fun!</span></p> <p><span style="color: #003366;"><strong><em>understand relationships friends &amp; family!</em></strong></span><br /><br /><span style="color: #003366;">why can&#039;t relate parents?</span><br /><span style="color: #003366;">why argue best friend?</span><br /><br /><span style="color: #003366;"><em><strong>find love-match &ndash; in fantasy or real!</strong></em></span><br /><br /><span style="color: #003366;">is boyfriend/girlfriend right me?</span><br /><span style="color: #003366;">how personality affect sex-life?</span><br /><br /><span style="color: #003366;"><em><strong>compare personality favorite celebrity or sports star!</strong></em></span><br /><br /><span style="color: #003366;">what &hellip;</span><br /><span style="color: #003366;">paris hilton? tom cruise? hannah montana? justin bieber? taylor swift?</span><br /><span style="color: #003366;">mick jagger? ronaldo? or justin timberlake? &hellip; name few! </span><br /><span style="color: #003366;">more 500 musicians/pop stars, sports stars, celebrities, film stars etc. online&hellip;! </span><br /><br /><span style="color: #003366;"><em><strong>make right career choice!</strong></em></span><br /><br /><span style="color: #003366;">what type of job suit me best?</span><br /><br /><br /><span style="color: #003366;"><strong>it&rsquo;s &hellip; </strong></span><strong><span style="color: #ffcc00;">p</span><span style="color: #ffcc00;">ersonalit</span><span style="color: #ffcc00;">y</span><em><span style="color: #003366;">, </span></em><span style="color: #ff0000;">personality</span><em><span style="color: #003366;">, </span></em><span style="color: #3366ff;">per</span><span style="color: #3366ff;">sonality</span><span style="color: #003366;">!</span></strong><br /><br /> <br /><span style="color: #003366;">simply <strong>answer 15 questions</strong> , &#039;<span style="color: #ff0000;">click</span>&#039; generate report gives <strong>unique personality profile</strong> including <span style="text-decoration: underline;"><strong>individual</strong></span> combination of </span><strong><span style="color: #ffcc00;">yellow</span></strong><span style="color: #003366;">, </span><strong><span style="color: #ff0000;">red</span></strong><span style="color: #003366;"> , </span><strong><span style="color: #3366ff;">blue</span></strong><span style="color: #003366;"> personality traits. </span><br /><br /><span style="color: #003366;"><strong>press &#039;</strong></span><strong><span style="color: #3366ff;">help</span></strong><span style="color: #003366;"><strong>&#039; function if want read more different personality types , our system of color coding.</strong></span><br /><span style="color: #003366;"><strong>complete test, can check <span style="color: #ff0000;">celebrity love match</span> , check personality friends, family , choice of on 500 stars have listed online.</strong></span><br /><br /><span style="color: #003366;"><strong>and <span style="color: #ff0000;">your sexuality</span>??? &hellip; , </strong></span><strong><span style="color: #3366ff;">career choice</span></strong><span style="color: #003366;"><strong>???</strong></span><br /><br /><span style="color: #003366;"><strong>you can 10 tests/reports , comparisons family , friends <span style="color: #ff0000;">plus unlimited celebrity comparisons &hellip; now!</span></strong></span><br /><br /><span style="color: #003366;"><strong>this system simple, <span style="color: #ff0000;">quick</span>, easy , </strong></span><strong><span style="color: #3366ff;">accurate</span></strong><span style="color: #003366;"><strong> - amaze you!</strong></span><br /><br /></p> <p style="text-align: center;"><span style="color: #003366;"><strong>let fun begin &hellip; go test yourself!</strong></span><br /><br /><img title="take test" src="http://www.personality-abc.frankmanson.com/website/admin/userfiles/image/sales/take-the-test-sml.gif" alt="take test" width="150" height="88" /></p></body></html> 

and code

contentfield=new browserfield();             contentfield.displaycontent(content,"http://localhost");  

i dont know problem.

try following.

browserfieldconfig config = new browserfieldconfig(); httpheaders headers = new httpheaders(); headers.addproperty(httpheaders.header_content_type, httpheaders.content_type_text_html); headers.addproperty(httpheaders.header_accept_charset, "utf-8"); config.setproperty(browserfieldconfig.http_headers, headers); browserfield contentfield = new browserfield(config); this.add(contentfield); // add screen contentfield.displaycontent(content,"http://localhost"); // content -> html content 

Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -