82d4448246cf0e8dcf36dc378c2da3ffafbdba53.svn-base 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package UIB.COM;
  2. import java.io.IOException;
  3. import javax.servlet.ServletException;
  4. import javax.servlet.http.HttpServlet;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import UIB.UIB03.UIB030310;
  8. /**
  9. * @desc 将质保书的图片、配置文件下载到应用服务器
  10. * @author meiguiping
  11. * @date 2011 4:39:46 PM
  12. */
  13. public class ZbsConfileServlet extends HttpServlet
  14. {
  15. public ZbsConfileServlet()
  16. {
  17. }
  18. //质保书配置文件下载到引用服务器
  19. public void init() throws ServletException
  20. {
  21. try
  22. {
  23. UIB030310 uib030310 = new UIB030310();
  24. uib030310.configFileDownload();
  25. }catch(Exception ex)
  26. {
  27. ex.printStackTrace();
  28. }
  29. }
  30. //get request
  31. public void doGet(HttpServletRequest request, HttpServletResponse response)
  32. throws ServletException, IOException
  33. {
  34. }
  35. //post request
  36. public void doPost(HttpServletRequest request, HttpServletResponse response)
  37. throws ServletException, IOException
  38. {
  39. }
  40. public void destroy()
  41. {
  42. super.destroy(); // Just puts "destroy" string in log
  43. }
  44. }