文件名称:浏览图片代码-查看某个文件夹中的图片,显示在网页中
文件大小:3KB
文件格式:RAR
更新时间:2013-08-08 04:58:12
浏览图片
查看某个文件夹中的图片,显示在网页中。程序片:
package tom.jiafei;
import java.io.*;
class FileName implements FilenameFilter
{ public boolean accept(File dir,String name)
{ boolean boo=false;
if(name.endsWith(".jpg")||name.endsWith(".JPG"))
boo=true;
return boo;
}
}
public class Play
{ int imageNumber=0,max;
String pictureName[],playImage;
public Play()
{ File dir=new File("D:/myjsp/image");
pictureName=dir.list(new FileName());
max=pictureName.length;
}
public void setImageNumber(int n)
{ if(n<0)
n=max-1;
if(n==max)
n=0;
imageNumber=n;
}
public int getImageNumber()
{ return imageNumber;
}
public String getPlayImage()
{ playImage=new String("
【文件预览】:
浏览图片代码
----WEB-INF()
--------classes()
----showPic.jsp(742B)