diff --git a/jweb/src/edu/hzu/javaweb/labs/se1414080902202/Se1414080902202Servlet.java b/jweb/src/edu/hzu/javaweb/labs/se1414080902202/Se1414080902202Servlet.java
new file mode 100644
index 00000000..550ece1e
--- /dev/null
+++ b/jweb/src/edu/hzu/javaweb/labs/se1414080902202/Se1414080902202Servlet.java
@@ -0,0 +1,60 @@
+package edu.hzu.javaweb.labs.se1414080902202;
+
+import java.io.IOException;
+import java.io.PrintWriter;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+public class Se1414080902202Servlet extends HttpServlet {
+
+ /**
+ * The doGet method of the servlet.
+ *
+ * This method is called when a form has its tag value method equals to get.
+ *
+ * @param request the request send by the client to the server
+ * @param response the response send by the server to the client
+ * @throws ServletException if an error occurred
+ * @throws IOException if an error occurred
+ */
+ public void doGet(HttpServletRequest request, HttpServletResponse response)
+ throws ServletException, IOException {
+
+ response.setContentType("text/html;charset=utf-8");
+ PrintWriter out = response.getWriter();
+ out.println("计价规则是:起步价5元,超过2公里,每公里2元,以此累加。累加金额超过50,则减少5元。");
+
+ }
+
+ /**
+ * The doPost method of the servlet.
+ *
+ * This method is called when a form has its tag value method equals to post.
+ *
+ * @param request the request send by the client to the server
+ * @param response the response send by the server to the client
+ * @throws ServletException if an error occurred
+ * @throws IOException if an error occurred
+ */
+ public void doPost(HttpServletRequest request, HttpServletResponse response)
+ throws ServletException, IOException {
+
+ response.setContentType("text/html");
+ PrintWriter out = response.getWriter();
+ out.println("");
+ out.println("");
+ out.println("