我有以下小程序代码来加载图像。
public void init(){
str = "Hi, Welcome!";
sharedImage = getImage(getDocumentBase(), "/Users/Me/ScreenShare/testImage.png");
}
public void paint (Graphics g)
{
g.drawString(str, 50, 50);
g.drawImage(sharedImage, 100, 100, this);
}
但是,我现在想动态加载它,因为来自这个路径的图像将每 5 秒更改一次新图像。如果我不使用任何 html 页面运行小程序,如何自行刷新小程序中的图像?
请指教。