⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orderlist_jsp.java

📁 项目名称eShop
💻 JAVA
字号:
package org.apache.jsp;

import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import java.text.*;
import java.util.*;
import eshop.business.*;
import eshop.common.*;

public final class orderlist_jsp extends org.apache.jasper.runtime.HttpJspBase
    implements org.apache.jasper.runtime.JspSourceDependent {

  private static java.util.List _jspx_dependants;

  public Object getDependants() {
    return _jspx_dependants;
  }

  public void _jspService(HttpServletRequest request, HttpServletResponse response)
        throws java.io.IOException, ServletException {

    JspFactory _jspxFactory = null;
    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    PageContext _jspx_page_context = null;


    try {
      _jspxFactory = JspFactory.getDefaultFactory();
      response.setContentType("text/html; charset=gb2312");
      pageContext = _jspxFactory.getPageContext(this, request, response,
      			"", true, 8192, true);
      _jspx_page_context = pageContext;
      application = pageContext.getServletContext();
      config = pageContext.getServletConfig();
      session = pageContext.getSession();
      out = pageContext.getOut();
      _jspx_out = out;

      out.write("\r\n");
      out.write("<html>\r\n");
      out.write("\r\n");
      out.write("<head>\r\n");
      out.write("\r\n");
      out.write("<title>订单列表</title>\r\n");
      out.write("<link rel=stylesheet href=\"css/style.css\" type=\"text/css\"> \r\n");
      out.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=gb2312\"></meta>\r\n");
      out.write("</head>\r\n");
      out.write("\r\n");
      out.write("<body>\r\n");

     String strUserCode=session.getAttribute("s_UserCode")==null?"":(String)session.getAttribute("s_UserCode");
     if(strUserCode=="")
     {
        out.write("<script language=javascript>top.window.navigate('login.htm');</script>");
     }

      out.write("\r\n");
      out.write("<table cellpadding=0 cellspacing=0 width=\"610\">\r\n");
      out.write("<tr height=\"47\">\r\n");
      out.write("  <td width=\"143\"><img src=\"image/es_myaccount_002.gif\"></td>\r\n");
      out.write("  <td background=\"image/es_myaccount_003.gif\" width=\"467\"></td>  \r\n");
      out.write("</tr>\r\n");
      out.write("</table>\r\n");
      out.write("<p></p>\r\n");
      out.write("<TABLE cellpadding=0 cellspacing=0 class=\"tableBorder3\" width=\"610\">\r\n");
      out.write("<TR>\r\n");
      out.write("<TD>\r\n");

  Vector vcrOrders=null;
  OrderBean orderbean=new OrderBean();
  vcrOrders=orderbean.getOrders(strUserCode);
  int intOrderNum=vcrOrders.size()-2;
  Integer intOrderDoneNum=(Integer)vcrOrders.elementAt(intOrderNum);
  Float fltOrderTotalPaid=(Float)vcrOrders.elementAt(intOrderNum+1);

      out.write("\r\n");
      out.write("<table cellpadding=0 cellspacing=0 width=\"600\" align=center  class=\"tableBorder2\">\r\n");
      out.write("<tr height=\"20\" >\r\n");
      out.write("  <td class=\"tableRowlight\">\r\n");
      out.write("     <span class=\"font-red\">");
      out.print(strUserCode);
      out.write("</span>您好,以下是您在eShop中的订单:<br>\r\n");
      out.write("     共<span class=\"font-red\"> ");
      out.print(intOrderNum);
      out.write(" </span>张订单, 其中已成交订单共 <span class=\"font-red\">");
      out.print(intOrderDoneNum);
      out.write("</span> 张,消费金额总计 <span class=\"font-red\">");
      out.print(fltOrderTotalPaid);
      out.write("</span> 元  \r\n");
      out.write("  </td> \r\n");
      out.write("</tr>\r\n");
      out.write("</table>\r\n");
      out.write("\r\n");
      out.write("<p></p>\r\n");
      out.write("<!--订单列表Start-->\r\n");
      out.write("<table cellpadding=0 cellspacing=0 width=\"600\" align=center  class=\"tableBorder2\">\r\n");
      out.write("<tr height=\"20\" style=\"font-weight:bold;color:#cc3300\" align=\"center\">\r\n");
      out.write("  <td class=\"tableRow\" width=\"20%\">\r\n");
      out.write("  订单号 \r\n");
      out.write("  </td>\r\n");
      out.write("  <td class=\"tableRow\" width=\"10%\">\r\n");
      out.write("  收货人\r\n");
      out.write("  </td> \r\n");
      out.write("   <td class=\"tableRow\" width=\"15%\">\r\n");
      out.write("  订单金额\r\n");
      out.write("  </td> \r\n");
      out.write("  <td class=\"tableRow\" width=\"15%\">\r\n");
      out.write("  查看订单\r\n");
      out.write("  </td>\r\n");
      out.write("  <td class=\"tableRow\" width=\"15%\">\r\n");
      out.write("  订单状态 \r\n");
      out.write("  </td> \r\n");
      out.write("  <td class=\"tableRow\" width=\"15%\">\r\n");
      out.write("  操作 \r\n");
      out.write("  </td>\r\n");
      out.write("</tr>\r\n");

  for(int i=0;i<intOrderNum;i++)
  {
    OrderVO order=(OrderVO)vcrOrders.elementAt(i);

      out.write("\r\n");
      out.write("<tr height=\"20\" align=\"center\" >\r\n");
      out.write("  <td class=\"tableRowlight\" width=\"20%\">\r\n");
      out.write("  ");
      out.print(order.getOrderID());
      out.write("\r\n");
      out.write("  </td>\r\n");
      out.write("  <td class=\"tableRowlight\" width=\"10%\">\r\n");
      out.write("  ");
      out.print(order.getRecName());
      out.write("\r\n");
      out.write("  </td> \r\n");
      out.write("  <td class=\"tableRowlight\" width=\"10%\">\r\n");
      out.write("  ");
      out.print(order.getPaid());
      out.write("\r\n");
      out.write("  </td> \r\n");
      out.write("  <td class=\"tableRowlight\" width=\"15%\">\r\n");
      out.write("  <a href=\"\">订单详情</a>\r\n");
      out.write("  </td>\r\n");
      out.write("  <td class=\"tableRowlight\" width=\"15%\">\r\n");
      out.write("  ");
      out.print(order.getOrderState());
      out.write(" \r\n");
      out.write("  </td> \r\n");
      out.write("  <td class=\"tableRowlight\" width=\"15%\">\r\n");
      out.write("  <a href=\"OrderDeleteAction?");
      out.print(order.getOrderID());
      out.write("\">删除</a>\r\n");
      out.write("  </td>\r\n");
      out.write("</tr>\r\n");
}
      out.write("\r\n");
      out.write("</table>\r\n");
      out.write("<!--订单列表End-->\r\n");
      out.write("\r\n");
      out.write("</TD>\r\n");
      out.write("</TR>\r\n");
      out.write("</TABLE>\r\n");
      out.write("\r\n");
      out.write("</body>\r\n");
      out.write("\r\n");
      out.write("</html>\r\n");
    } catch (Throwable t) {
      if (!(t instanceof SkipPageException)){
        out = _jspx_out;
        if (out != null && out.getBufferSize() != 0)
          out.clearBuffer();
        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
      }
    } finally {
      if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
    }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -