System.IO.StreamReader 讀檔中文亂碼怎麼解決?- 藍色小舖 BlueShop
System.IO.File.OpenText 內定是utf8的開啟方式... 這一行只是宣告...要用big5的方式來讀資料 Dim myStreamReaderL1 As New System.IO.StreamReader(FilePathStr, Encoding.GetEncoding(950)) 當你執行到這一行的時候, 已經是放棄上面的那個big5, 改用OpenText ......