当前位置: 技术问答>java相关
寻求图象下载的applet程序
来源: 互联网 发布时间:2015-01-19
本文导语: 怎样控制在图象完全下载完毕再进行绘画,谢谢 | MediaTracker mt =new MediaTracker(this); Image image =getImage(getCodeBase(),"test.gif"); try { mt.addImage(image,0); mt.waitForID(0); } catch(Exception e) {} 这样写图像就会...
怎样控制在图象完全下载完毕再进行绘画,谢谢
|
MediaTracker mt =new MediaTracker(this);
Image image =getImage(getCodeBase(),"test.gif");
try
{
mt.addImage(image,0);
mt.waitForID(0);
}
catch(Exception e)
{}
这样写图像就会直接下载下来,而不是到要draw时才下载
Image image =getImage(getCodeBase(),"test.gif");
try
{
mt.addImage(image,0);
mt.waitForID(0);
}
catch(Exception e)
{}
这样写图像就会直接下载下来,而不是到要draw时才下载