国产精品婷婷久久久久久,国产精品美女久久久浪潮av,草草国产,人妻精品久久无码专区精东影业

基于java的搜索引擎的研究與實(shí)現(xiàn).rar

RAR格式版權(quán)申訴手機(jī)打開展開

基于java的搜索引擎的研究與實(shí)現(xiàn),基于java的搜索引擎的研究與實(shí)現(xiàn)2.1萬字 23頁論文+開題+任務(wù)書+外文翻譯摘 要網(wǎng)絡(luò)中的資源非常豐富,但是如何有效的搜索信息卻是一件困難的事情。建立搜索引擎就是解決這個問題的最好方法。搜索引擎應(yīng)人們的迫切需求出現(xiàn)以后經(jīng)歷了從簡單的機(jī)器人搜索軟件,獨(dú)立搜索引擎到專業(yè)搜索引擎,元搜索引擎的發(fā)展歷程成為人們尋找信息不可...
編號:115-31365大小:126.25K
分類: 論文>計(jì)算機(jī)論文

該文檔為壓縮文件,包含的文件列表如下:

內(nèi)容介紹

原文檔由會員 xiaowei 發(fā)布

基于Java的搜索引擎的研究與實(shí)現(xiàn)
2.1萬字 23頁
論文+開題+任務(wù)書+外文翻譯



摘 要
網(wǎng)絡(luò)中的資源非常豐富,但是如何有效的搜索信息卻是一件困難的事情。建立搜索引擎就是解決這個問題的最好方法。搜索引擎應(yīng)人們的迫切需求出現(xiàn)以后經(jīng)歷了從簡單的機(jī)器人搜索軟件,獨(dú)立搜索引擎到專業(yè)搜索引擎,元搜索引擎的發(fā)展歷程成為人們尋找信息不可或缺的工具
本文首先詳細(xì)介紹了搜索引擎的發(fā)展歷史。討論了搜索引擎的研究現(xiàn)狀及設(shè)計(jì)目標(biāo),基于英特網(wǎng)的搜索引擎的系統(tǒng)結(jié)構(gòu),然后進(jìn)行詳細(xì)的說明。在搜索引擎策略的問題上,本文進(jìn)行了討論。為了更加深刻的理解這種技術(shù),本人結(jié)合了原代碼進(jìn)行分析。
關(guān)鍵字:網(wǎng)絡(luò)機(jī)器人,索引,搜索引擎,搜索策略

Abstract

The resources in the Internet are abundant, but it is a difficult job to search some useful information. So a search engine is the best method to solve this problem. However, people urgently need an effective retrieva l tool to help them find the right information quickly in the infinite data domain. Search Engine is becoming an independent tool now after developing from simple Robot Search Software, Single Search Engine to Specialized Search and Meta Search Engine since it came into being to play up to people’s requirements.
This article first introduces the developing history of search engine, discusses the research at present and aim of device, and the system structure of search engine based on the Internet in detail, then gives a minute explanation. This article also discusses the method of search engine. In order to understand the technology more deeply, I have programmed search engine by myself.
.keyword: web robots , index , search engine, search strategy,




目 錄
摘 要 2
ABSTRACT 2
第一章 引言 4
第二章 搜索引擎的研究現(xiàn)狀及設(shè)計(jì)目標(biāo) 5
2.1國外搜索引擎的主要特點(diǎn) 5
2.2國內(nèi)搜索引擎研究現(xiàn)狀 5
2.3搜索引擎未來動向 5
2.3小結(jié) 5
第三章 搜索引擎的結(jié)構(gòu)與技術(shù)分析 7
3.1系統(tǒng)概述 7
3.2搜索引擎的構(gòu)成 7
3.2.1網(wǎng)絡(luò)機(jī)器人 7
3.2.1.1網(wǎng)絡(luò)機(jī)器人的結(jié)構(gòu)分析 8
3.2.1.2網(wǎng)絡(luò)機(jī)器人的發(fā)展是搜索引擎發(fā)展的關(guān)鍵………………………….... …8
3.2.1.3分布式機(jī)器人結(jié)構(gòu)分析……………………………………………………...8
3.2.1.4爬行程序?qū)崿F(xiàn)方式……………………………………………………………8
3.2.2索引與搜索 8
3.2.3用戶檢索過程 9
3.3搜索引擎的主要指標(biāo)及分析………………………………………………………….....9
3.4 搜索引擎策略 10
3.4.1簡介 10
3.4.2面向主題的搜索策略 10
3.4.3權(quán)威網(wǎng)頁和中心網(wǎng)頁…………………………………………………………….11
3.5小結(jié) 11
第四章 程序代碼分析……………………………………………………………………………12
4.1程序分析 12
4.1.1界面設(shè)計(jì) 12
4.1.2程序分析及流程圖 14
4.1.3程序輸出結(jié)果 16
結(jié)論 17
致謝 18
參考文獻(xiàn) 19


參考文獻(xiàn)
[1]基于JAVA技術(shù)的搜索引擎的研究與實(shí)現(xiàn)
[2] [美]Jeff Heaton,Progra mming Spiders,Bots,and Aggregator in Java
[3] 徐寶文,張衛(wèi)豐,搜索引擎與信息獲取技術(shù)



附錄
在eclipse下的程序代碼
package df;
import java.applet.Applet;
import java.awt.event.*;
import java.awt.*;
import java.util.StringTokenizer;
import java.net.*;
import java.io.*;
......