📄 _0002fselectproductjsp_0002ejspselectproductjsp_jsp_0.java
字号:
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
import java.io.PrintWriter;
import java.io.IOException;
import java.io.FileInputStream;
import java.io.ObjectInputStream;
import java.util.Vector;
import org.apache.jasper.runtime.*;
import java.beans.*;
import org.apache.jasper.JasperException;
import java.sql.*;
public class _0002fselectProductJsp_0002ejspselectProductJsp_jsp_0 extends HttpJspBase {
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(6,0);to=(6,92)]
// end
static {
}
public _0002fselectProductJsp_0002ejspselectProductJsp_jsp_0( ) {
}
private static boolean _jspx_inited = false;
public final void _jspx_init() throws JasperException {
}
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
JspFactory _jspxFactory = null;
PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
String _value = null;
try {
if (_jspx_inited == false) {
_jspx_init();
_jspx_inited = true;
}
_jspxFactory = JspFactory.getDefaultFactory();
response.setContentType("text/html; charset=GBK");
pageContext = _jspxFactory.getPageContext(this, request, response, "", true, 8192, true);
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(0,48);to=(2,0)]
out.write("\r\n<html>\r\n"); // end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(2,30);to=(6,0)]
out.write("\r\n<head>\r\n<title>选择商品页面</title>\r\n</head>\r\n"); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(6,0);to=(6,92)]
shoppingsystem.shoppingSystemBean selectProduct = null;
boolean _jspx_specialselectProduct = false;
synchronized (session) {
selectProduct= (shoppingsystem.shoppingSystemBean)
pageContext.getAttribute("selectProduct",PageContext.SESSION_SCOPE);
if ( selectProduct == null ) {
_jspx_specialselectProduct = true;
try {
selectProduct = (shoppingsystem.shoppingSystemBean) Beans.instantiate(this.getClass().getClassLoader(), "shoppingsystem.shoppingSystemBean");
} catch (Exception exc) {
throw new ServletException (" Cannot create bean of class "+"shoppingsystem.shoppingSystemBean");
}
pageContext.setAttribute("selectProduct", selectProduct, PageContext.SESSION_SCOPE);
}
}
if(_jspx_specialselectProduct == true) {
// end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(6,0);to=(6,92)]
}
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(6,92);to=(12,0)]
out.write("\r\n<body>\r\n<form method=\"post\" action=\"productsList.jsp\">\r\n <div align=\"center\"><br>\r\n 请选择商品 :\r\n <select name=\"productName\">\r\n"); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(12,2);to=(18,0)]
try
{
ResultSet rs = selectProduct.getProduct();
while(rs.next())
{
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(18,2);to=(19,14)]
out.write("\r\n <option>"); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(19,17);to=(19,45)]
out.print(rs.getString("product_name"));
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(19,47);to=(19,48)]
out.write("("); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(19,51);to=(19,83)]
out.print(rs.getString("product_quantity"));
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(19,85);to=(19,93)]
out.write("件),商品编号:"); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(19,96);to=(19,122)]
out.print(rs.getString("product_id"));
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(19,124);to=(20,0)]
out.write("</option>\r\n"); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(20,2);to=(22,0)]
}
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(22,2);to=(32,0)]
out.write("\r\n </select>\r\n <br>\r\n <br>\r\n <br>\r\n <input type=\"submit\" name=\"Submit\" value=\"确定\">\r\n <input type=\"reset\" value=\"重选\">\r\n <br>\r\n </div>\r\n</form>\r\n"); // end
// begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(32,2);to=(38,0)]
}
catch(Exception ex)
{
ex.printStackTrace();
}
// end
// HTML // begin [file="D:\\Work\\Java\\ShoppingSystem\\defaultroot\\selectProductJsp.jsp";from=(38,2);to=(41,0)]
out.write("\r\n</body>\r\n</html>\r\n"); // end
} catch (Exception ex) {
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (pageContext != null) pageContext.handlePageException(ex);
} finally {
if (out != null) out.flush();
if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -