利用JSP交互式打印表格

问题:在客户端输入要打印表格的行数rows和列数cols,然后经过服务端处理打印rows*cols的表格,打印数据为i*j。

html部分:文件名:input.html

<html>
<head>
<title>Hello</title>
</head>

<body>
<form action="input.jsp" method="post">
     <table border="1" width="100%">
        <tr>
             <td>请输入表格要显示的行数:</td>
	         <td><input type="text" name="row"></td>
        </tr>
        <tr>
             <td>请输入表格要显示的列数:</td>
	         <td><input type="text" name="col"></td>
        </tr>
        <tr>
             <td>
			     <input type="submit" value="显示">
				 <input type="reset" value="重置">
			 </td>
        </tr>
     </table>
</form>
</body>
</html>


JSP部分:文件名:input.jsp

<html>
<head><title>JSP</title></head>
<body>

<%
    int cols=0;
	int rows=0;
	try{
		rows=Integer.parseInt(request.getParameter("row"));
	    cols=Integer.parseInt(request.getParameter("col"));
	}catch(Exception e){}
%>
<table border="1", width="100%">
<%
    for(int i=0;i<rows;i++)
    {
%>
<tr>
<%
	      for(int j=0;j<cols;j++)
	      {
%>
                <td bgcolor="green"><%=i*j%></td>
<%
	      }
%>
</tr>
<%
	}
%>
<table>

</body>
</html>


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值