标签:
搜书玩是一款由吾爱破解论坛网友分享的一款小说下载工具,它是由.net写的,暂时是给网站运营下书用的,所以加了个壳,它在使用上也非常简单,只需输入你想下载的小说名,点击搜索即可一键搜索下载,有需要的朋友快来下载试试吧。
在输入框内输入你要搜索的小说名称 或者 小说的作者
键盘按回车或者点击搜书按钮
然后在左侧的搜索结果中就能看到搜索的结果
点击左侧的结果即可在中间看到这本小说对应有多少的书源
点击下载即可在下方看到下载进度
点击目录即可看到小说下载完毕的位置
搜书玩是一款小说下载软件,搜书玩支持各大平台,资源丰富,能够让你轻松找到你想要的小说,喜欢看小说的朋友一定不要错过
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using CCWin;
using CCWin.SkinControl;
using libZhuishu;
namespace Novel
{
public partial class Form2 : CCSkinMain
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
skinDataGridView2.Columns.Add(new DataGridViewProgressBarColumn() { Name = "progrescolumn", HeaderText = "进度" });
SearchBox.Focus();
SearchBox.SelectAll();
}
private void SearchBtn_Click(object sender, EventArgs e)
{
SearchResultView.Items.Clear();
var booklist = LibZhuishu.fuzzySearch(SearchBox.Text.Trim(), 0, 10000);
ChatListItem ul = new ChatListItem() { Text = "搜索结果", IsOpen = true };
foreach (var book in booklist)
{
Image image = null;
try
{
string url = WebUtility.UrlDecode(book.cover);
int urlStartIndex = url.IndexOf("http:");
if (urlStartIndex >= 0)
{
url = url.Substring(urlStartIndex);
}
image = Image.FromStream(System.Net.WebRequest.Create(url).GetResponse().GetResponseStream());
}
catch { }
ChatListSubItem li = new ChatListSubItem()
{
DisplayName = book.title,
NicName = book.author,
Tag = book._id,
PersonalMsg = book.shortIntro,
HeadImage = image
};
ul.SubItems.Add(li);
}
SearchResultView.Items.Add(ul);
}
private Button btn = new Button();
private void SearchResultView_ClickSubItem(object sender, CCWin.SkinControl.ChatListClickEventArgs e, MouseEventArgs es)
{
skinDataGridView1.Rows.Clear();
try
{
string bookid = e.SelectSubItem.Tag.ToString();
TocSummmaryInfo[] shuyuan = LibZhuishu.getTocSummary(bookid);
// List<TocInfo> tocinfolist = new List<TocInfo>();
if (shuyuan.Length > 0)
{
foreach (var yuan in shuyuan)
{
if (yuan != null)
{
var row = skinDataGridView1.Rows.Add();
skinDataGridView1.Rows[row].Cells["id"].Value = bookid;
skinDataGridView1.Rows[row].Cells["book"].Value = e.SelectSubItem.DisplayName;
skinDataGridView1.Rows[row].Cells["tocid"].Value = yuan._id;
skinDataGridView1.Rows[row].Cells["tocname"].Value = yuan.name;
skinDataGridView1.Rows[row].Cells["lastchapter"].Value = yuan.lastChapter;
skinDataGridView1.Rows[row].Cells["chaptercount"].Value = yuan.chaptersCount.ToString();
skinDataGridView1.Rows[row].Cells["download"].Value = "下载";
// skinDataGridView1.Rows[row].Cells["progrescolumn"].Value = 0;
// ((DataGridViewProgressBarCell)skinDataGridView1.Rows[row].Cells["progrescolumn"]).Maximum = yuan.chaptersCount;
}
}
}
else
{
MessageBox.Show("尚未收录");
}
}catch(Exception ee)
{
throw ee;
}
}
private void skinDataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if(e.ColumnIndex==6)
{
var ss = skinDataGridView1.Rows[e.RowIndex].Cells["tocid"].Value.ToString();
var row = skinDataGridView2.Rows.Add();
skinDataGridView2.Rows[row].Cells["cid"].Value = skinDataGridView1.Rows[e.RowIndex].Cells["id"].Value.ToString();
skinDataGridView2.Rows[row].Cells["cbook"].Value = skinDataGridView1.Rows[e.RowIndex].Cells["book"].Value.ToString();
skinDataGridView2.Rows[row].Cells["ctocid"].Value = skinDataGridView1.Rows[e.RowIndex].Cells["tocid"].Value.ToString();
skinDataGridView2.Rows[row].Cells["ctocname"].Value = skinDataGridView1.Rows[e.RowIndex].Cells["tocname"].Value.ToString();
skinDataGridView2.Rows[row].Cells["clastchapter"].Value = skinDataGridView1.Rows[e.RowIndex].Cells["lastchapter"].Value.ToString();
skinDataGridView2.Rows[row].Cells["cchaptercount"].Value = skinDataGridView1.Rows[e.RowIndex].Cells["chaptercount"].Value.ToString();
skinDataGridView2.Rows[row].Cells["cpath"].Value = Application.StartupPath + "\\" + skinDataGridView1.Rows[e.RowIndex].Cells["book"].Value.ToString()+ ".txt";
skinDataGridView2.Rows[row].Cells["progrescolumn"].Value = 0;
((DataGridViewProgressBarCell)skinDataGridView2.Rows[row].Cells["progrescolumn"]).Maximum = Convert.ToInt32( skinDataGridView1.Rows[e.RowIndex].Cells["chaptercount"].Value.ToString());
TocChaperListInfo chapterlist = LibZhuishu.getChaperList(ss);
Pack pack = new Pack()
{
chapterlist = chapterlist,
bookname = skinDataGridView1.Rows[e.RowIndex].Cells["book"].Value.ToString(),
progress = ((DataGridViewProgressBarCell)skinDataGridView2.Rows[row].Cells["progrescolumn"])
};
// MessageBoxEx.Show(ss);
Thread thread = new Thread(new ParameterizedThreadStart(down));
thread.Start(pack);
}
}
private delegate void GoProgress(ProgressBar metroProgressBar1,int value);
public void GoBar(ProgressBar metroProgressBar1,int value)
{
if (metroProgressBar1.InvokeRequired)
{
GoProgress t = new GoProgress(GoBar);
metroProgressBar1.BeginInvoke(t, new object[] { value });
}
else
{
metroProgressBar1.Value = value;
}
}
public class Pack
{
public TocChaperListInfo chapterlist { set; get; }
public string bookname { set; get; }
public DataGridViewProgressBarCell progress { set; get; }
}
public void down(object pack)
{
try
{
tocChaperInfo[] chlist = ((Pack)pack).chapterlist.chapters;
string bookname = ((Pack)pack).bookname;
for (int i = 0; i < chlist.Length; i++)
{
try
{
var chap = LibZhuishu.getChapter(chlist[i].link);
string path = Path.Combine(Application.StartupPath, bookname + ".txt");
FileStream fs2 = new FileStream(path, FileMode.Append, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs2, new System.Text.UTF8Encoding(false));
sw.WriteLine(chap.title);
sw.WriteLine(chap.body);
sw.Close();
fs2.Close();
fs2.Dispose();
}
catch (Exception eex)
{
throw eex;
}
finally
{
((Pack)pack).progress.Value = i;
}
}
((Pack)pack).progress.Value = ((Pack)pack).progress.Maximum;
}
catch { }
}
private void skinDataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (skinDataGridView2.Columns[e.ColumnIndex].Name== "cpath")
{
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe");
psi.Arguments = "/e,/select," + skinDataGridView2.Rows[e.RowIndex].Cells["cpath"].Value.ToString();
System.Diagnostics.Process.Start(psi);
}
}
private void SearchBox_KeyUp(object sender, KeyEventArgs e)
{
if(e.KeyCode==Keys.Enter)
{
SearchBtn_Click(null, null);
}
}
}
}
厂商名称:
迅雷11正式版客户端141.6M6645人在玩下载工具哪个好?90%的人会说迅雷,不但速度快,而已已成了习惯,迅雷11是一款常用的高速P2P下载软件。在支持高速下载的同时,还有断点续传等功能,是上网下载的好帮手。
下载迅雷X4.1M784人在玩迅雷X也就是迅雷最新的第十代产品,本次迅雷团队迭代了三个版本,打造了这个全新的个性化智能下载工具,本次迅雷X更新版本从界面、框架、选项设置、下载引擎等进行全面升级,界面简约,更加专注下载。
下载迅雷9官方下载最新版88M934人在玩迅雷是一款非常好用的网络下载工具,后台资源的丰富,稳定的下载通道,流畅的下载速度都让很多网友为之感叹,无愧于现今中国第一的网络下载工具,今天小编为大家准备的2017迅雷9最新版,更是精益求精,再此优化下载通道,让下载和浏览器更契合更稳定,避免出现下载BUG,喜欢的朋友赶快使用吧!
下载迅雷9公测版下载40.2M368人在玩迅雷9公测版下载是迅雷公司最新推出的迅雷下载软件,时隔数年,终于推出新版的迅雷,界面大变样,更带来新的下载引擎。喜欢尝鲜的快来下载吧!
下载太乐地图下载器129.2M126人在玩太乐地图下载器支持谷歌、天地图、百度、诺基亚、搜搜、ArcGIS伀渀氀椀渀攀、高德、超图云服务、必应、雅虎的街道地图、卫星地图(卫片)、标签/卫星混合地图、地表地形图的高速下载、无缝拼接、分块拼接、无损压缩、投影转换、离线浏览和地图服务发布(WMTS\WMS)
下载EagleGet(猎鹰)7.9M880人在玩eagleget怎么用,EagleGet是一款清爽全能的下载工具。让你的下载速度加快达6倍,支持多个视频网站的在线视频下载,完美免费,界面简洁,而且没有讨厌的广告,支持HTTP、HTTPS、FTP、MMS、RTSP等下载协议。
下载迅雷u享版27.1M315人在玩迅雷u享版,专为会员打造的下载神器。使用迅雷U享版,可以更为智能、更为快速的下载资源,并且享受无广告的特权,让下载变得更加清爽。
下载Youtube Video Downloader4.9M199人在玩YouTubeVideoDownloader是一款windows平台下的易用而且完全免费的下载工具,专门用于新一代的网络(web2.0)下载,例如从YouTube,Todou的网站下载Window7下最顶尖的下载工具最大可能的下载速度,是最快的下载工具可以轻松地从YouTube,Todou等网站下载相关的音
下载BIGEMAP地图下载器Google Earth版32.6M797人在玩bigemap地图下载器全能版是一款专业的谷歌地图下载工具,它的功能非常全面,集地图下载,地图浏览、数据编辑类地理信息系统为一体,下载的地图数据没有水印,感兴趣的朋友快来下载体验吧。
下载谷谷GIS地图下载器20.3M27人在玩谷谷GIS地图下载器,支持多个地图源的手机地图下载器,具备标记、测量、编辑等功能,使用简单,完全免费,超多高清地图源尽在其中,免费下载需要的地图。
下载