

/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
腾讯QQ下载v9.6.9.28878 最新版
QQ游戏大厅2022官方下载正式版v5.46.57915.0 最新版
QQ电脑管家v15.0.22206.230 最新正式版
雷神模拟器精简工具v1.0 绿色版
yy语音pc版v9.12.0.0 官方最新版
搜狗五笔输入法电脑版安装包v5.5.0.2582 官方电脑版
迅雷11正式版客户端v11.3.19.2000 官方版
搜狗拼音输入法电脑版v13.0.0.6738 官方正式版
爱奇艺PC版客户端下载v9.11.169.6503 官方电脑版
网易云音乐pc客户端v2.10.6.200601 最新版搜书玩是一款由吾爱破解论坛网友分享的一款小说下载工具,它是由.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);
}
}
}
}

P2psearcher(种子搜索神器)v8.0.2 最新版下载工具 / 9.5M
迅雷极速版 下载无限制V1.0.35.366 自用版下载工具 / 20.1M
51cto网课视频下载工具v2021 最新版下载工具 / 84.4M
下图高手v15.5.1.8 官方版下载工具 / 7.1M
狗狗书籍搜索下载器1.1 绿色免费版下载工具 / 1.3M
8点报订阅下载器下载2015 安装版下载工具 / 16.4M
迅雷Xv10.1.23.576 最新版下载工具 / 4.1M
pcstory蘑菇游戏下载器v4.5 免费版下载工具 / 5.8M
P2psearcher种子搜索神器去限制版v3.5 珍藏版下载工具 / 2.1M
声海盗(全网VIP音乐下载)v2.0.0 最新版下载工具 / 182KB
P2psearcher(种子搜索神器)v8.0.2 最新版下载工具 / 9.5M
迷你迅雷3.0敏感资源高速下载版v3.0 最新版下载工具 / 7M
迅雷极速版 下载无限制V1.0.35.366 自用版下载工具 / 20.1M
迅雷11正式版客户端v11.3.19.2000 官方版下载工具 / 141.6M
51cto网课视频下载工具v2021 最新版下载工具 / 84.4M
utorrent中文版下载v3.5.5.45043 官方版下载工具 / 27.7M
下图高手v15.5.1.8 官方版下载工具 / 7.1M
p2psearcherv8.0.2 云播穿透版下载工具 / 9.5M
迅雷9.1.36.824最新绿化修改版v9.1.36.824 极速版下载工具 / 73.1M
567网盘破解版v1.0 免费版下载工具 / 468KB