我在基于j2me的应用程序中有一个LWUIT表单。我通过RSS Feed(包括图像路径)获取数据。现在我想在我的LWUIT表单中通过RSS提要图像路径显示图像。我正在使用HTMLComponent。基于html的文本加载正常但图像未显示。以下是我的代码段。
HTMLComponent htmlComp = new HTMLComponent();
htmlComp.setPreferredSize(new Dimension(300,300));
String imagePath=myItem.getImagePath().trim();
htmlComp.setShowImages(true);
String myHtml="<b>Hello</b> <br/> <img src= \""+imagePath+"\" /> ";
System.out.println(myHtml);
htmlComp.setHTML(myHtml,null,null,false);
addComponent(htmlComp);
图像路径类似于“http://toffeetv.com/wp-content/uploads/2012/06/f_swan-150x150.jpg”。 为什么图像没有显示?有人可以用适当的代码示例帮助我吗?
答案 0 :(得分:1)
HTML组件接受基本URL作为该方法的参数之一。只需将URL设置为适当的路径,它应该按预期工作。