我的基于 j2me 的应用程序中有一个 LWUIT 表单。我通过 RSS 源(包括图像路径)获取我的数据。现在我想通过我的 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”。为什么图片不显示?任何人都可以帮助我提供适当的代码示例吗?