///
///型別:陣列反顯,處理**
///
public void ontypearrayshowitem()
}//讀取對應的天線型別檔案
// opentext 建立乙個utf-8 編碼的streamreader物件
streamreader currenttypearraysr = currenttypearrayfile.opentext();
// 全部讀完
string currenttypearraystr = currenttypearraysr.readtoend();
//split方法:要省略返回的陣列中的空陣列元素,則為 system.stringsplitoptions.removeemptyentries;
string currenttypearrayarr = currenttypearraystr.split(new string , system.stringsplitoptions.removeemptyentries);
//陣子/橫向陣子數
string bitnum = currenttypearrayarr[2];
//動態載入出陣列
arrayvisibility = "visible";
if ("直線陣列".equals(currenttypearrayarr[1]))
}else if ("交叉陣列".equals(currenttypearrayarr[1]))
}
C 中StreamReader讀取中文出現亂碼
有時在用c 中streamreader讀取中文時出現亂碼 如 原因是自windows 2000之後的作業系統在檔案處理時預設編碼採用unicode 所以.net檔案的預設編碼也是unicode。除非另外指定,streamreader的預設編碼為unicode,而不是當前系統的ansi 頁。但是文件大...
C 使用StreamReader類讀取漢字
我們上個例子中的 using system using system.collections.generic using system.text using system.io class program sr.close catch ioexception ex console.readkey 如...
C 中StreamReader讀取中文出現亂碼
yhrun原文c 中streamreader讀取中文出現亂碼 原因是自windows 2000之後的作業系統在檔案處理時預設編碼採用unicode 所以.net檔案的預設編碼也是unicode。除非另外指定,streamreader的預設編碼為unicode,而不是當前系統的ansi 頁。但是文件大...