网站网址提交集合

继上一篇中英文外链资源收集,这一篇我收集了大多数网站提交目录,废话就不多说了。希望对大家有所帮助

1、Google提交
http://www.google.com/addurl/?hl=zh_CN
2、百度提交
http://www.baidu.com/search/url_submit.html
3、Bing提交
http://cn.bing.com/docs/submit.aspx
4、有道提交
http://tellbot.youdao.com/report
5、新浪爱问提交
http://iask.com/guest/add_url.php
6、中搜(同于慧聪)提交
http://ads.zhongsou.com/register/page.jsp
7、雅虎中国(同于易搜)提交
http://search.help.cn.yahoo.com/h4_4.html
8、TOM提交提交
http://search.tom.com/tools/weblog/log.php
9、alltheweb 提交
http://www.alltheweb.com/help/webmaster/submit_site
10、AltaVista 提交
http://www.altavista.com/addurl/default
11、DMOZ提交
http://www.dmoz.org/World/Chinese_Simplified
12、麦布提交
http://www.mybu.net/submit.asp
13、免费收录网址导航提交
http://www.weiduomei.net/login.asp
14、千度搜索提交
http://www.qiandu.com/protocol.asp
15、好站导航提交
http://www.beijixing.com.cn/cgi-bin/add.cgi
16、凯希提交
http://www2d.biglobe.ne.jp/~kinryou/cgi/url.html
17、协通提交
http://www.net2asp.com.cn/search/regform.htm
18、法律网搜索引擎提交
http://www.law-lib.com/lawseek/wzdl.asp
19、孙悟空提交
http://www.sunwukong.cn/add.php
20、极限搜索提交
http://www.2881.com/submit.htm
21、奇搜提交
http://about.qeesoo.com:88/urladd.jsp
22、零搜提交
http://www.0sou.cn/protocol.asp
23、精彩实用网提交
http://www.ok881.com/add.asp
24、114啦提交
http://url.114la.com/
25、hao123提交
http://221.12.147.30/url_submit.php
26、分类目录提交
http://www.at-lib.com/join_0id.html
27、1odp分类目录提交
http://www.1odp.cn/protocol.asp
28、SEEK114分类目录提交
http://www.seek114.com/join_0id.html
29、中文分类目录提交
http://www.all-list.cn/customer_center/submit_website.html
30、中国开放式分类目录提交
http://www.chinadmoz.com.cn/webuser/userlogin.asp?t=4
31、ODP分类目录提交
http://www.lirenhome.com/ODP/wzdl.htm
32、dir114分类目录提交
http://www.dir114.com/User/UserLogin.asp
33、我家有才分类目录提交
http://www.wjyc.com/add.php?cat=
34、第一摘网站目录提交
http://www.dzhai.com/User/UserLogin.asp
35、站长区分类目录提交
http://www.admin7.cn/MuLu/UserPublish.asp?Action=Add
36、esyndicat分类目录提交
http://link.92an.com/suggest-listing.php?id=0
37、35分类目录提交
http://www.35dir.com/Submit.asp
38、酷帝分类目录提交
http://www.coodir.com/accounts/addsite.asp
39、thatG分类目录提交
http://www.thatg.com/suggest-listing.php?id=0
40、GG-AD分类目录提交
http://www.gg-ad.org/accounts/addsite.asp
41、114CB网站目录提交
http://www.114cb.com/Submit.asp
42、金泉网商业目录提交
http://www.dir.jqw.com/
43、网站目录提交
http://www.friendpage.cn/submit.php
44、160网站分类目录提交
http://www.dir160.com/user/login.aspx
45、258商业搜索提交
http://dir.258.com/
46、edcba分类目录提交
http://www.edcba.com/
47、网络营销搜索
http://www.ubestweb.com/plus/heightsearch.php
48、迪优网提交
http://www.duwww.com/login.asp
49、点我吧分类目录提交
http://www.digg58.com/User/UserLogin.asp
50、3322网址之家提交
http://www.3322.com/about/indexed.html
51、奇虎论坛网址提交
http://daohang.qihoo.com/add.html

 

百度网站登录入口
Google网站登录入口
Yahoo网站登录入口
Bing网站登录入口
Dmoz网站登录入口
Coodir网站目录登录入口
Alexa网站登录入口
搜狗网站收录提交入口
Soso网站收录提交入口
有道搜索网站登录入口
搜索引擎收录查询
中国搜索网站登录入口
Freewebsubmission.com 搜索引擎批量提交

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这是一个比较复杂的题目,需要一定的Java Web开发经验。以下是大致的代码框架,具体实现细节可能因个人实现方式而有所不同。 1. 学生类Student ```java public class Student { private String number; private String userName; private Gender sex; private String className; private String department; // 构造函数、getter和setter方法 } public enum Gender { MALE, FEMALE } ``` 2. 学生信息展示页面list.jsp ```jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>学生信息列表</title> </head> <body> <h1>学生信息列表</h1> <table> <thead> <tr> <th>学号</th> <th>姓名</th> <th>性别</th> <th>班级</th> <th>院系</th> </tr> </thead> <tbody> <%-- 遍历学生信息列表并显示 --%> <c:forEach var="student" items="${studentList}"> <tr> <td>${student.number}</td> <td>${student.userName}</td> <td>${student.sex}</td> <td>${student.className}</td> <td>${student.department}</td> </tr> </c:forEach> </tbody> </table> <a href="add.jsp">添加学生信息</a> </body> </html> ``` 3. Servlet ListServlet ```java @WebServlet("/list") public class ListServlet extends HttpServlet { private static final long serialVersionUID = 1L; protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 从数据库或其他数据源读取学生信息列表 List<Student> studentList = new ArrayList<>(); studentList.add(new Student("1001", "张三", Gender.MALE, "计算机1班", "计算机系")); studentList.add(new Student("1002", "李四", Gender.FEMALE, "计算机2班", "计算机系")); // 将学生信息列表存储到request域中 request.setAttribute("studentList", studentList); // 转发到list.jsp页面 request.getRequestDispatcher("/WEB-INF/jsp/list.jsp").forward(request, response); } } ``` 4. 学生信息添加页面add.jsp ```jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>添加学生信息</title> </head> <body> <h1>添加学生信息</h1> <%-- 表单提交到AddServlet --%> <form action="add" method="post"> <label>学号:<input type="text" name="number"></label><br> <label>姓名:<input type="text" name="userName"></label><br> <label>性别:<select name="sex"> <option value="MALE">男</option> <option value="FEMALE">女</option> </select></label><br> <label>班级:<input type="text" name="className"></label><br> <label>院系:<input type="text" name="department"></label><br> <input type="submit" value="提交"> </form> </body> </html> ``` 5. Servlet AddServlet ```java @WebServlet("/add") public class AddServlet extends HttpServlet { private static final long serialVersionUID = 1L; protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 从表单中获取学生信息 String number = request.getParameter("number"); String userName = request.getParameter("userName"); Gender sex = Gender.valueOf(request.getParameter("sex")); String className = request.getParameter("className"); String department = request.getParameter("department"); // 创建学生对象并添加到学生信息列表 Student student = new Student(number, userName, sex, className, department); List<Student> studentList = new ArrayList<>(); studentList.add(student); // 将学生信息列表存储到ServletContext域中 getServletContext().setAttribute("studentList", studentList); // 重定向到list.jsp页面 response.sendRedirect(request.getContextPath() + "/list"); } } ``` 6. Servlet LoginServlet ```java @WebServlet("/login") public class LoginServlet extends HttpServlet { private static final long serialVersionUID = 1L; protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 验证学生身份 String number = request.getParameter("number"); String password = request.getParameter("password"); if ("1001".equals(number) && "123".equals(password)) { // 登录成功,将学生信息存储到session域中 HttpSession session = request.getSession(); session.setAttribute("number", number); session.setAttribute("userName", "张三"); // 重定向到list.jsp页面 response.sendRedirect(request.getContextPath() + "/list"); } else { // 登录失败,重定向到login.jsp页面 response.sendRedirect(request.getContextPath() + "/login.jsp"); } } } ``` 7. Filter LoginFilter ```java @WebFilter(filterName = "LoginFilter", urlPatterns = { "/list.jsp", "/add.jsp" }) public class LoginFilter implements Filter { public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest req = (HttpServletRequest) request; HttpServletResponse resp = (HttpServletResponse) response; HttpSession session = req.getSession(); String number = (String) session.getAttribute("number"); if (number != null && "1001".equals(number)) { // 学生已登录,放行请求 chain.doFilter(request, response); } else { // 学生未登录,重定向到login.jsp页面 resp.sendRedirect(req.getContextPath() + "/login.jsp"); } } } ``` 8. 监听器 OnlineListener ```java @WebListener public class OnlineListener implements HttpSessionListener, ServletContextListener { private int onlineCount; private int visitCount; public void sessionCreated(HttpSessionEvent event) { onlineCount++; } public void sessionDestroyed(HttpSessionEvent event) { onlineCount--; } public void contextInitialized(ServletContextEvent event) { // 初始化网站访问量为0 ServletContext context = event.getServletContext(); context.setAttribute("visitCount", 0); } public void contextDestroyed(ServletContextEvent event) { } public void requestInitialized(ServletRequestEvent event) { // 每次请求时增加网站访问量 ServletContext context = event.getServletContext(); Integer count = (Integer) context.getAttribute("visitCount"); context.setAttribute("visitCount", count + 1); } public void requestDestroyed(ServletRequestEvent event) { } public void sessionDidActivate(HttpSessionEvent event) { } public void sessionWillPassivate(HttpSessionEvent event) { } } ``` 需要注意的是,为了保证网站的安全性,不能将Servlet和JSP页面直接放在Web应用的根目录下,需要将它们放在WEB-INF目录下,这样外部用户就无法直接访问它们。同时,为了避免重复提交表单,可以在AddServlet中进行表单重复提交校验。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值