最近自己找了乙個開源的部落格**,放到阿里雲上,方便自己發布部落格。
鏈結文章:
", nodetitle.innertext);
blog.volume = 0
; blog.content =htmlstr;
blog.createtime =datetime.now;
string htmlsumm = nodecontent.innertext.replace("
", ""
);
int sublen =htmlsumm.length;
if (sublen > 80
)
blog.summary = htmlsumm.substring(0
, sublen);
blog.category= categorymanager.findroot()[0
]; response =blogmanager.addblog(blog);
return
json(response);
}webclient c = new webclient();
c.encoding = encoding.getencoding("utf-8");
string html = c.downloadstring(urlstr);
通過webclient讀取網頁,注意這裡的編碼問題,有的網頁用的是utf-8有的是gb2312
自己嘗試一下就知道了,編碼設定錯誤會出現漢子亂碼。
htmldocument doc = new htmldocument();
doc.loadhtml(html);
htmlnode nodeinfo = doc.getelementbyid("post_detail");
讀取html字串中指定id的標籤的內容;
參考部落格:
最終我不用再重複新增部落格了,不過還多虧沒有做防盜煉,否則還要單獨處理。
Python 獲取 指定資料夾目錄內 所有檔名
import os dir g 程式設計 python list os.listdir dir 列出資料夾下所有的目錄與檔案 for i in range 0,len list path os.path.join dir,list i if os.path.isfile path print pat...
git獲取指定路徑 Git 獲取指定檔案或者資料夾
在進行專案開發的時候,有時候會有這樣的需求那就是 我們只希望從git倉庫裡取指定的檔案或者資料夾出來。在svn裡面,這非常容易實現,因為svn基於檔案方式儲存,而git卻是基於元資料方式分布式儲存檔案資訊的,它會在每一次clone的時候將所有資訊都取回到本地,即相當於在你的機器上生成乙個轉殖版的版本...
獲取指定檔案的屬性
獲取指定檔案的屬性 include include include int stat const char pathname,struct stat buf 若獲取符號鏈結檔案的話,實際上它獲取的是鏈結對應的實際檔案的屬性 int lstat const char pathname,struct s...