如何使用JSP页面把一个文件夹的图片分页显示出来?急!急!急!急!在线等!!!
IMAGE是我存放图片的文件夹。
我用下面的代码把他取了出来:
<table>
<%
String name = " ";
String url = " ";
File d = new File( "D:/Tomcat 5.0/webapps/ynx/image ");
if (d.exists())
{
File list[]=d.listFiles();
for (int i = 0; i < list.length; i++)
{
if (list[i].isFile())
{
url = list[i].getPath();
name = list[i].getName();
%>
<th>
<td>
<a href = "/ynx/image/ <%=name%> ">
<img src= " <%=url%> "width= "180 " height= "180 alt= "姜晶花.jpg ">
</a>
</td>
</th>
<tr>
<td>
<a href= "http://localhost:8080/ynx/parent.html " onclick= "javascript:localtion.self.close(); "> <%=name%>
</a>
</td>
</tr>
<%
}
}
} %>
</table>
郁闷的是,不知道怎么才能控制它在一个页面中只显示8张图片,如何实现他的分页功能。
急,请各位大侠帮忙解决一哈。感激不尽!在线等待!
------解决方案--------------------帮顶
------解决方案--------------------如果在这里不能得到满意回答,请尝试到IT付费问答社区www.nlld.net提问