摘要:
链接: https://pan.baidu.com/s/1Fy2LbcpmujOiqtNZ3ZySOQ 提取码: ts5k 阅读全文
摘要:
链接: https://pan.baidu.com/s/1Fy2LbcpmujOiqtNZ3ZySOQ 提取码: ts5k 阅读全文
摘要:
unit Unit2; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm2 = class(TForm) Button1: TButton; procedure FormCr... 阅读全文
摘要:
procedure TForm1.Button1Click(Sender: TObject); var hGame: THandle; pid, ProcessID: Cardinal; readCount: Cardinal; arrByte:array[0..1023] of Byte; gWidth, gHeight: Integer; totalBytes: In... 阅读全文
摘要:
import urllib, urllib.request, urllib.parse import random import zlib import re import os, time SavePath="Save" def InitDev(): AllHanzi = "" if not os 阅读全文
摘要:
// test.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { TCHAR szPath[MAX_PATH]; GetSystemDi... 阅读全文
摘要:
function GetLeft(sText, sepStr: string): string; var p: Integer; begin p := Pos(sepStr, sText); if p = 0 then Exit(''); Result := Copy(sText, 1, p - 1); end; function GetRight(sText, sepStr... 阅读全文
摘要:
改编自:http://www.jianshu.com/p/588241a313e7 # _*_ coding:utf-8 _*_ import urllib2 import re class TestProxy(object): def __init__(self, timeout): self.url = 'http://www.baidu.com' ... 阅读全文
|