中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
采用javaUi的方式写了一个Image组件,通过发送请求的方式获取到.jpg文件,如何将此图像放置到Image组件中
微信扫码分享
InputStream inputStream = connection.getInputStream(); ImageSource imageSource = ImageSource.create(inputStream,null); PixelMap pixelMap = imageSource.createPixelmap(null); this.getUITaskDispatcher().asyncDispatch(new Runnable() { @Override public void run() { if (pixelMap!=null){ networkImg.setPixelMap(pixelMap); networkImg.setPixelMap(ResourceTable.Media_icon); } textInfo.setText("网络图片加载成功"); } }); inputStream.close(); }