0

这是我的代码,来自 Google.somewhere 的搜索结果写着我必须将“开始”设置为“0”,但由于我是 java 中的一个非常新的蜜蜂,我真的不知道我该怎么做。所以任何帮助都会欣赏。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"          "http://www.w3.org/TR/html4/loose.dtd">

<%@page import="com.demo.GoogleSearch"%>
<%@page import="java.util.List"%><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%@include file="SearchGoogle.jsp" %>
<%
String word=request.getParameter("searchWord");
List<String>urls=GoogleSearch.searchWord(word);

%>

<table>
<%
int b = urls.size();
for(int i=0;i<b;i++){
//if (i < b)
%>
<tr><td><%=urls.get(i) %></td></tr>
<%} %>
</table>
</body>
</html>

这是 Sesrch 的页面:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<form action="SearchResults.jsp">
<table>
<tr><td>
Enter Search Word:</td><td>
<input type="text" name="searchWord"/></td></tr>
<tr><td colspan="2">
<input type="submit" value="search">
</td></tr>
</table>
</form>


</body>
</html>
4

1 回答 1

0

我认为 4 个搜索结果是谷歌通过他们的 API 调用它时对结果的限制,除非你想为搜索付费。在 uni 我必须创建一个需要从搜索引擎获取结果的项目,我们使用了 GigaBlast,因为它有一个很好的 API 并且每次搜索返回的结果限制更大(如果我没记错的话,50 个)。

于 2013-09-19T14:19:08.143 回答