| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package UIB.COM;
- import java.io.IOException;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import UIB.UIB03.UIB030310;
- /**
- * @desc 将质保书的图片、配置文件下载到应用服务器
- * @author meiguiping
- * @date 2011 4:39:46 PM
- */
- public class ZbsConfileServlet extends HttpServlet
- {
- public ZbsConfileServlet()
- {
-
- }
-
- //质保书配置文件下载到引用服务器
- public void init() throws ServletException
- {
- try
- {
- UIB030310 uib030310 = new UIB030310();
- uib030310.configFileDownload();
- }catch(Exception ex)
- {
- ex.printStackTrace();
- }
- }
-
- //get request
- public void doGet(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException
- {
- }
- //post request
- public void doPost(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException
- {
- }
-
- public void destroy()
- {
- super.destroy(); // Just puts "destroy" string in log
- }
-
- }
|