You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
package com.hry.servlet;
|
|
|
|
import java.io.IOException;
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.annotation.WebServlet;
|
|
import javax.servlet.http.HttpServlet;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import com.hry.dao.BookDao;
|
|
|
|
/**
|
|
* Servlet implementation class AddBookServlet
|
|
*/
|
|
@WebServlet("/AddBookServlet")
|
|
public class AddBookServlet extends HttpServlet {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public AddBookServlet() {
|
|
super();
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
|
|
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
|
|
|
}
|
|
|
|
|
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
|
//设置编码类型
|
|
request.setCharacterEncoding("UTF-8");
|
|
response.setContentType("text/html;charset = UTF-8");
|
|
//获取要添加的图书信息
|
|
//得到图书号参数
|
|
String card = request.getParameter("card");
|
|
String name = request.getParameter("name");
|
|
String type = request.getParameter("type");
|
|
String autho = request.getParameter("autho");
|
|
//出版社
|
|
String press = request.getParameter("press");
|
|
int num = Integer.parseInt(request.getParameter("num"));
|
|
BookDao bookdao = new BookDao();
|
|
//调用函数,存入图书
|
|
bookdao.addBook(card, name, type, autho, press, num);
|
|
response.sendRedirect("admin_book.jsp");
|
|
}
|
|
|
|
}
|