11 2017 档案
摘要:# 插入排序的工作原理是,对于每个未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。## 步骤:## 从第一个元素开始,该元素可以认为已经被排序# 取出下一个元素,在已经排序的元素序列中从后向前扫描# 如果被扫描的元素(已排序)大于新元素,将该元素后移一位# 重复步骤3,直到找到已排序的元素小于或者等于新元素的位置# 将新元素插入到该位置后# 重复步骤2~5#[9 ,3,1,4,...
阅读全文
摘要:1.【iTextSharp.dll】,C# 开源PDF处理工具,可以任意操作PDF,并可以提取PDF中的文字和图片,但不能直接将PDF转换成图片。 DLL和源码 下载地址:http://download.csdn.net/detail/shi0090/4065982 中文帮助文档 下载地址:http://download.csdn.net/detail/shi0090/4065986 提取文字测...
阅读全文
摘要:1.读取PDF内容 public string ReadPdfFile(string fileName) { StringBuilder text = new StringBuilder(); if (File.Exists(fileName)) { PdfReader pdfReader = new Pdf...
阅读全文
摘要:HtmlElement script = wf.WebBrowser.Document.CreateElement("script"); script.SetAttribute("type", "text/javascript"); script.SetAttribute("text", "function _func(){return document.body.scrollHeight}")...
阅读全文
摘要:结构适合存储数据的。 类是操作面向对象的。
阅读全文
摘要:import threading,time class Boss(threading.Thread): def run(self): print("BOSS:伙计们今晚上加班到22:00") event.set() time.sleep(5) #模拟一个小时这段时间 print("BOSS:22:00了可以下班了") ...
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { public class Myevents : EventArgs { ...
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { public class BossDemo { public eve...
阅读全文
摘要:未处理 System.ServiceModel.EndpointNotFoundException Message="没有终结点对可能接受消息的 http://192.168.0.168/TDB.WebService/Service1.svc/basic 进行监听。这通常是因地址或 SOAP 操作不
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { public class BossDemo { public del...
阅读全文
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { cla...
阅读全文
摘要:string resultFileName = MD5Encrypt(NavigateUrl).Replace("=",string.Empty) + ".txt"; string newFilename = string.Empty; //StringBuilder rBuilder = new StringBuil...
阅读全文
摘要:using HtmlAgilityPack; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks;...
阅读全文
摘要:var nodemailer = require("nodemailer");var mailTitle='http://bemupa.forumieren.com:Best Music Paradise1111';var fs= require('fs');sendSSLMail("666")fu
阅读全文