解碼: 位元組---->字元(inputstreamreader)
編碼: 字元---->位元組(outputstreamwriter)
作用(2點):
1.能將位元組流轉換成字元流
2.指定字符集specified charset(在解碼的過程如果與原始碼的字符集不統一就會出現亂碼,所以最好指定字符集)
construction
描述inputstreamreader(inputstream in, string charsetname)
建立使用給定字符集的 inputstreamreader
outputstreamwriter(outputstream in, string charsetname)
建立使用給定字符集的 outputstreamwriter
characterstreams -->inputstreamreader/outputstreamwriter–>bytestreams
public
class
converttest
}catch
(ioexception e)
}}
public
static
void
main
(string[
] args)
os.flush()
;}catch
(ioexception e)
}}
IO流(字元流 轉換流)
字元輸入流 public inputstreamreader inputstream in 預設的編碼格式 一般使用這個 public inputstreamreader inputstream in,string charsetname 指定的編碼格式 字元輸入流 位元組輸入流 編碼表 將位元組流...
io 位元組和字元轉換流
掌握outputstreamwriter和inputstreamreader類的作用 在整個io包中,實際上就是分為位元組流和字元流,但是除了這2個流之外,還存在了一組位元組流 字元流的轉換類 outputstreamwriter 是writer的子類,將輸出的字元流變為位元組流,即 將一根字元流的...
I O流(轉換流)
轉換流其實聽名字就不是很難理解 比如位元組流轉字元流 這裡我就不再演示輸出結果了,這一篇部落格我沒有驗證我寫的 不過一般是沒有多大問題的,就算有自己花點時間除錯一下就好了,不要太懶。還有就是記得包含上指定的包,要不然肯定會報錯的。這裡建議大家還是不要偷懶自己弄幾個檔案敲一下 執行下。這裡我們可能只會...