歡迎跟我連絡

本頁最下方有Web MSN可以直接跟我交談喔!
免安裝程式...哈哈 歡迎聊天

2010年1月1日 星期五

2010 Happy New Year!

2010-1-1 下午 05-03-37

2009年12月31日 星期四

This Side Up

這是一部幽默動畫影片,呈現剛用電腦朋友的種種誤解。片中乃是以藍白 iMac 為主角,還有那難用卻難忘的圓形滑鼠,真是令人回味無窮。

2009年12月30日 星期三

英藉毒犯 VS 中國的死刑判決

「有些人就像那樣,他們的悲劇是自己造成的,雖是自作自受,卻又表現得十分壯烈」

                          ~《刺鳥》作者 Colleen Mc. Collough

 

日前一位英國籍旅客進入中國時攜帶了為數不少的海洛英,遭到中國逮捕後判死刑.英國政府極力譴責中國的一個事件.上面的那段話,或許就做了最好的詮釋.

 

86388719_qqhKuoqa_fatiguee

XML Node 查詢操作

XML幾乎已經算是很廣泛的用於設定檔及一些資料的格式化存檔.既然如此,對它的內容的查詢就會經常的出現在程式之中,今天寫一個簡當的範例提供參考...

XML格式及內容:

<Names>
    <Name>
        <Name>Johnny</Name>
        <Tel>0926010111</Tel>
    </Name>
    <Name>
        <Name>Tim</Name>
        <Tel>0930817118</Tel>
    </Name>
</Names>

 

操作方式:

XmlDocument xml = new XmlDocument();
xml.Load(new StreamReader(myXmlString)); //myXmlString為上面檔案檔名
XmlNodeList xnList = xml.SelectNodes("/Names/Name");
foreach (XmlNode xn in xnList)
{
  string Name = xn["Name"].InnerText;
  string Tel = xn["Tel"].InnerText;
  Console.WriteLine("Name: {0} Tel: {1}", Name, Tel);
}

輸出:

Name: Johnmy Tel: 0926010111

Name: Tim Tel: 0930817118

71591080_fk3r586i_inbox3PICT0213 

檔案屬性操作

(1)取得檔案屬性

string filePath = @"c:\test.txt"; 

FileAttributes fileAttributes = File.GetAttributes(filePath);

(2)設定檔案屬性

// 清除所有檔案屬性

File.SetAttributes(filePath, FileAttributes.Normal);

// 只設定封存及唯讀屬性

File.SetAttributes(filePath, FileAttributes.Archive | FileAttributes.ReadOnly);

(3)檢查檔案屬性

// 檢查檔案是否有唯讀屬性

bool isReadOnly = ((File.GetAttributes(filePath) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly);

// 檢查檔案是否有隱藏屬性

bool isHidden = ((File.GetAttributes(filePath) & FileAttributes.Hidden) == FileAttributes.Hidden);

// 檢查檔案是否有封存屬性

bool isArchive = ((File.GetAttributes(filePath) & FileAttributes.Archive) == FileAttributes.Archive);

// 檢查檔案是否有系統屬性

bool isSystem = ((File.GetAttributes(filePath) & FileAttributes.System) == FileAttributes.System);

(4)加入某些屬性給檔案

// 設定隱藏屬性   

File.SetAttributes(filePath, File.GetAttributes(filePath) | FileAttributes.Hidden);

// 設定封存及唯讀屬性  

File.SetAttributes(filePath, File.GetAttributes(filePath) | (FileAttributes.Archive | FileAttributes.ReadOnly));

 

82167513_qzzWq8m4_ostuni1ostuni2217

2009年12月29日 星期二

2009結束前夕

2009再2~3天就要結束,想寫些麼來當作日後的回憶...

這一年來快樂的事情,實在就像沙漠裡的北極熊少的可憐...

不好的事情卻接踵而來...

金融海嘯引發的裁員無薪假...

溫室效應南北極冰層不斷的瓦解...

2012年的預言不斷的叨擾在耳邊...

88風災帶來的南台灣多少家庭的一夕毀滅...

妹妹的病發與過世...

365個不順遂的日子...

希望來年可以擺脫這些陰影,走出陰霾,願世界和平,眾生平安,大家事事順利...

 

86339959_bydQI5BK_box13047

MSN狀態(我在線上時,可以跟我交談喔)