using system;
using system.collections.generic;
using system.text;
using system.windows.forms;
using system.collections;
using system.runtime.interopservices;
public inifile(string filename)
public inifile()
//開啟inifile
public bool create(string filename)
//讀取整數
//引數:section 檔案節
// key 鍵值
// def 預設數值
public int getint(string section, string key, int def)
//讀取字串
//引數:section 檔案節
// key 鍵值
// def 預設數值
public string getstring(string section, string key, string def)
//讀取布林數值
//引數:section 檔案節
// key 鍵值
// def 預設數值
public bool getboolean(string section, string key, bool def)
//寫入整數數值
//引數:section 檔案節
// key 鍵值
// ival 數值
public void writeint(string section, string key, int ival)
//寫入字串
//引數:section 檔案節
// key 鍵值
// strval 數值
public void writestring(string section, string key, string strval)
//寫入布林數值
//引數:section 檔案節
// key 鍵值
// bval 數值
public void writeboolean(string section, string key, bool bval)
//刪除鍵
//引數:section 檔案節
// key 鍵值
public void delkey(string section, string key)
//刪除節
//引數:section 檔案節
// key 鍵值
public void delsection(string section)
CIniFile類,讀取INI檔案
private bool getvar const cstring const cstring cstring bool setvar const cstring const cstring const cstring const int itype 1 int searchline const c...
Hbase簡單操作
hbase是我接觸的新東西。專案組也準備使用它開發乙個大的服務平台。我也趁機學習學習,先看看hbase的簡單操作方法吧 雖然hbase與傳統的關係型資料庫有很大的不同,但首先建張表還是必須的 定義幾個常量 public static hbaseconfiguration conf new hbase...
excel VBA 簡單操作
public sub ss dim sht as worksheet set sht thisworkbook.worksheets sheet1 sht.cells 1,1 now end sub public sub getrow dim rnum as integer dim sht as w...