㈠ java连接百度搜索
1,可以用httpconnection或者apache的httpclient,通过“https://www..com/s?wd=要搜索的关键字”这个URL,获取网络搜索的内容。自己解析。
2,如果想从浏览器打开页面,可以用Runtime.getRuntime().exec("浏览器.exe 要打开的url");
3,如果自己用jni或者jna封装一些webkit之类的,通过java调用也可以。
㈡ java如何实现搜索功能。比如,输入txt就能搜索出这个文件夹内所有txt格式的文件。请给完整代码。
importjava.io.*;
publicclassFileDemo{
publicstaticvoidmain(String[]args)throwsException{
//第一个参数是文件路径,第二个参数是要搜索的文件扩展名
getFile("D:\JavaDemo",".txt");
}
privatestaticvoidgetFile(StringpathName,finalStringendsWith)throwsException{
Filefile=newFile(pathName);
if(!file.exists())
thrownewRuntimeException("文件不存在,你检索个P呀。");
file.listFiles(newFileFilter(){
publicbooleanaccept(Filefile){
if(file.getName().endsWith(endsWith)){
System.out.println(file.getName());
returntrue;
}else
returnfalse;
}
});
}
}