index-jsp.jsp
上传用户:guomengjz
上传日期:2022-06-06
资源大小:726k
文件大小:2k
源码类别:

搜索引擎

开发平台:

C/C++

  1. <%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
  2. <%@page import="java.net.*"%>
  3. <%@page import="java.util.*"%>
  4. <%@page import="java.io.*"%>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>Untitled Document</title>
  10. </head>
  11. <body>
  12. <%!
  13. public String PostUrl(String actionurl,String data){
  14. String ret="";
  15. try{
  16. URL url = new URL(actionurl);
  17. URLConnection connection = url.openConnection();
  18. connection.setDoOutput(true);
  19. OutputStreamWriter outer = new OutputStreamWriter(connection.getOutputStream(),"utf-8");
  20. outer.write(data);
  21. outer.close();
  22. BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(),"utf-8"));
  23. String inlin="";
  24. while ((inlin = in.readLine()) != null) {
  25. ret+=inlin;
  26. }
  27. in.close();
  28. }catch(Exception e){
  29. }
  30. return ret;
  31. }
  32. %>
  33. <%
  34. String SearchPortal="http://www.test.com/totindex.aspx";//淘特搜索引擎索引接口地址
  35. String IndexKey="totsearchengine01";//接口访问key,请通过搜索引擎中的web.config查找
  36. String str="";
  37. //添加索引
  38. str=PostUrl(SearchPortal,"key="+IndexKey+"&action=insert&id=1&Title=测一下试&Content=test&Categoryid=0&Summary=test&Photo=a&ModDate=2010-1-1&LinkUrl=test");
  39. out.print(str);
  40. out.print("<br>");
  41. //删除索引
  42. str=PostUrl(SearchPortal,"key="+IndexKey+"&action=delete&id=1");
  43. out.print(str);
  44. %>
  45. </body>
  46. </html>