我有以下 JApplet(基本上是滚动产品图像的轮播)。
private void populateMethod() {
for (int i = 0; i < 3; i++) {
try {
images.add(ImageIO.read(new URL(getCodeBase()+"/images/"+(i+1)+".jpg")));
} catch (IOException ex) {
Logger.getLogger(JAppletExample.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
在上述方法中,我将图像(当前位于我的解决方案内的一个包中)添加到要在轮播中显示的图像的 ArrayList。
现在如何使图像在 FTP 上可用,以便可以通过 FTP 更改图像?
(注:我包内的图片保存为1.jpg,2.jpg,3.jpg)