<%@ page contentType="text/html; charset=GB2312" %>//文件类型的说明,并设置页面编码
<%@ page import="java.sql.*" %>//导入需要的包
goodsid | goodsname | type | quantity | date | Price |
<%= rs.getString("goodsid") %> | <%= rs.getString("goodsname") %> | <%= rs.getString("type") %> | <%= rs.getString("quantity") %> | <%= rs.getString("date") %> | <%= rs.getString("price") %> |
看一下JSP和SERVLET的传值得值应该就能理解了