Is there any way to cre开发者_开发百科ate dynamic vectors using jsp. Advance thanks to you all.
Like this:
<%@ page import="java.util.Vector" language="java" %>
<%
Vector vc=new Vector();
%>
<html>
<body>
<%
int i=0;
for(i=0;i<vc.size();i++)
{
vc.add("vector" + i);
}
%>
</body>
</html>
精彩评论