原创 WinXin機器人實現

轉載自csdn 陳國林 前輩的博客,非常感謝 一. 引言       我們都知道,微信提供了多種登錄的方式,包括手機端、電腦端以及web端。       web端的登錄,我們用Python程序完全可以模擬

原创 @property的參數說明(轉載)

1. @property的參數說明 ======================================== ARC是蘋果爲了簡化程序員對內存的管理,推出的一套內存管理機制 使用ARC機制,對象的申請和釋放工作會在運行時,

原创 谷歌支付總結(下)

[html] view plain copy 開篇:   [html] view plain copy 如billing開發文檔所說,要在你的應用中實現In-app Billing只需要完成

原创 MFC 與FTP之間的交互

.h文件#pragma once #include <afxinet.h> #include <vector> #define FT

原创 VC++ webbrowser函數使用範例

[cpp] view plain copy  print? /*============================說明部分=================================    實現一下函數需包含

原创 iphone NSString 字符串處理:截取字符串、匹配字符串、分隔字符串

1.截取字符串NSString*string =@"sdfsfsfsAdfsdf";string = [string substringToIndex:7];//截取掉下標7之後的字符串NSLog(@"截取的值爲:%@",string);

原创 vc 解除文件佔用

#include"stdafx.h" #include <stdio.h> #include <tchar.h> #include <windows.h> #include <psapi.h> #include <strsafe.h>

原创 adb連接模擬器

windows下的夜神模擬器   adb connect 127.0.0.1:62001命令:adb connect 127.0.0.1:端口

原创 apktool 用法命令詳解

工具:apktool和jdk(個人使用jdk1.8.0_77) 下載地址: apktool_2.2.2.jar apktool.bat Apktool官網 說明:apktool_2.2.2.jar需要JDK7+; 首先是配置apktool

原创 挖掘微信Web版通信的全過程

昨天是週末,在家閒得無聊,於是去weiphone.com逛了一圈,偶然發現有人發了一帖叫《微信 for Mac》,這勾起了我的好奇心,國內做Mac開發的人確實很少,對於那些能夠獨自開發一些Mac第三方工具的開發者我都表示很敬畏,

原创 MFC 訪問網址

.h #ifndef HTTPCLIENT_H #define HTTPCLIENT_H #include <afxinet.h> #include <string> using namespace std; #

原创 純代碼寫CollectionViewCell的複用問題

需求:      需要的Button 的個數不一定 Button上顯示的字符串的長度不一定,Button上顯示的字符串和Button的個數全部從服務器下發 ,當Button的個數在屏幕上展示不下的時候要可以左右滑動 以展示更多的Bu

原创 ios 關於頁面間的跳轉

// 加載storyboard TJump爲storyboard的名字 ddd 爲其view的id UIStoryboard *story = [UIStoryboard storyboardWithName:@"

原创 UILabel顯示html文本

[objc] view plain copy   NSString * htmlString = @"<html><body> Some html string \n <font size=\"13\" color=\"r

原创 sqlite3語句積累

獲得指定日期數據 select * from TenxunYunTask where date(date) ='2016-10-28'