AddIndexAction.java
上传用户:zhihansy
上传日期:2014-12-04
资源大小:7241k
文件大小:1k
源码类别:

搜索引擎

开发平台:

Java

  1. /*
  2.  * Generated by MyEclipse Struts
  3.  * Template path: templates/java/JavaClass.vtl
  4.  */
  5. package com.struts.action;
  6. import java.io.UnsupportedEncodingException;
  7. import java.util.Date;
  8. import java.util.HashMap;
  9. import java.util.List;
  10. import java.util.Map;
  11. import javax.servlet.http.HttpServletRequest;
  12. import javax.servlet.http.HttpServletResponse;
  13. import org.apache.struts.action.Action;
  14. import org.apache.struts.action.ActionForm;
  15. import org.apache.struts.action.ActionForward;
  16. import org.apache.struts.action.ActionMapping;
  17. import sun.security.provider.MD5;
  18. import com.struts.form.SearcherForm;
  19. import com.lucene.*;
  20. import javax.security.*;
  21. public class AddIndexAction extends Action {
  22. public ActionForward execute(ActionMapping mapping, ActionForm form,
  23. HttpServletRequest request, HttpServletResponse response) {
  24. return mapping.findForward("success");
  25. }
  26. }