先試試吧,用word2007配置的
點
在點新建,
在博客提供商中選其他,
在API中選metaweblog,
博客URL添http://www.shnenglu.com/<your_username>/services/metaweblog.aspx,
輸入用戶名,密碼
搞定
插一張圖片試試
再來一段代碼看看
#include "stdafx.h"
#include "tchar.h"
#include <fstream>
#include <map>
#include <vector>
#include <set>
/*
工程說明:
1.從sourse.txt中讀取文本行到vector容器
2.遞歸調用搜索函數(void searchWord(string line,Set<int> &lineNum))從每一行中搜索制定單詞,并將其所在行號存入set容器(可避免同一行出現兩次重復記錄行號)
3.將set和指定單詞存入map對象以備以后搜索
4.通過getResult(string ,map)輸出結果
5.輸出指定行的結果
*/
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}