📄 addbill_jsp.java
字号:
package org.apache.jsp;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import java.sql.*;
public final class AddBill_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {
private static java.util.Vector _jspx_dependants;
public java.util.List 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=GBK");
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("\r\n");
out.write("<head>\r\n");
out.write("\r\n");
out.write("<title>AddBill</title>\r\n");
out.write("</head>\r\n");
out.write("\r\n");
out.write("<body>\r\n");
request.setCharacterEncoding("GBK");
out.write("\r\n");
out.write("<h2>table_bill</h2></br>\r\n");
out.write("bill_date: ");
out.print(request.getParameter("bill_date"));
out.write("<br>\r\n");
out.write("bill_due_date: ");
out.print(request.getParameter("bill_due_date"));
out.write("<br>\r\n");
out.write("vendor_name: ");
out.print(request.getParameter("vendor_name"));
out.write("<br>\r\n");
out.write("total(bill_amount):");
out.print( request.getParameter("total") );
out.write("\r\n");
out.write("\r\n");
out.write("<h2>table_bill_item</h2>\r\n");
String[]dept_id=request.getParameterValues("dept_id");
String[]dept_name=request.getParameterValues("dept_name");
String[]expense=request.getParameterValues("expense");
out.write('\r');
out.write('\n');
for(int i=0;i<dept_id.length;i++){
out.write("<br>\r\n");
out.write("dept_id:");
out.print(dept_id[i]);
out.write("\r\n");
out.write("<br>\r\n");
out.write("dept_name:");
out.print(dept_name[i]);
out.write("\r\n");
out.write("<br>\r\n");
out.write("bill_item_expense:");
out.print(expense[i]);
out.write("\r\n");
out.write("<br>\r\n");
}
out.write("\r\n");
out.write("\r\n");
out.write("</body>\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 + -