c# stringreader_stringwriter寫入字元及讀取字元(stream流)
static void Main(string[] args)
{
//用stringreader讀取字串的值並顯示
// Create a string to read characters from.
String str = "Some number of characters";
// Size the array to hold all the characters of the string
// so that they are all accessible.
char[] b = new char[24];
// Create an instance of StringReader and attach it to the string.
StringReader sr1 = new StringReader(str);
sr1.Read(b, 0, str.Length - 1);
// sr.Read(b, 0, 13);
// Display the output.
//console.writeline(char[]);輸出字元陣列的值
Console.WriteLine(b);
// Close the StringReader.
sr1.Close();
Console.ReadKey();
//用stringwriter(透過stringbuilder)向字串中寫入字元
StringBuilder sb = new StringBuilder("可變字串 測試 難");
char[] c ={ ' ','t','c','s','b','.'};
StringWriter sw = new StringWriter(sb);
sw.Write(c,0,c.Length-1);
sw.Close();
Console.WriteLine(sb);
Console.ReadKey();
}
{
//用stringreader讀取字串的值並顯示
// Create a string to read characters from.
String str = "Some number of characters";
// Size the array to hold all the characters of the string
// so that they are all accessible.
char[] b = new char[24];
// Create an instance of StringReader and attach it to the string.
StringReader sr1 = new StringReader(str);
sr1.Read(b, 0, str.Length - 1);
// sr.Read(b, 0, 13);
// Display the output.
//console.writeline(char[]);輸出字元陣列的值
Console.WriteLine(b);
// Close the StringReader.
sr1.Close();
Console.ReadKey();
//用stringwriter(透過stringbuilder)向字串中寫入字元
StringBuilder sb = new StringBuilder("可變字串 測試 難");
char[] c ={ ' ','t','c','s','b','.'};
StringWriter sw = new StringWriter(sb);
sw.Write(c,0,c.Length-1);
sw.Close();
Console.WriteLine(sb);
Console.ReadKey();
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-719798/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Java 字元流檔案讀寫Java字元
- java入門(字元流、位元組流)Java字元
- 129.(位元組流、字元流)對檔案進行讀寫操作字元
- C中檔案基本讀寫操作(單字元,多字元)字元
- Java IO流字元流簡介及基本使用Java字元
- IO 字元流字元
- NodeJS Stream(可讀流、可寫流) API解讀NodeJSAPI
- 讀取檔案流並寫入檔案流
- 字元輸出流_Writer類&FileWriter類介紹和字元輸出流的基本使用_寫出單個字元到檔案字元
- Java-字元流Java字元
- IO流-檔案的寫入和讀取
- 字元流中第一個不重複的字元字元
- IO流之 檔案操作字元流字元
- Java IO: 其他字元流(下)Java字元
- Java 基礎(九)字元流Java字元
- Java IO5:字元流Java字元
- Java IO6:字元流進階及BufferedWriter、BufferedReaderJava字元
- 劍指Offer 字元流中第一個不重複的字元字元
- c#之轉義字元C#字元
- IO流 檔案字元流FileReader、FlieWriter字元
- python讀入不定行字元的問題Python字元
- c#換行符及空格符(轉義字元)C#字元
- Python檔案讀寫詳解及設定檔案的字元編碼Python字元
- NodeJs Stream的整理總結 (一) --可讀流與可寫流NodeJS
- 第七章——字串(字元流)字串字元
- java學習日記-字元流Java字元
- 《劍指offer》:[55]字元流中第一個不重複的字元字元
- C#快速入門教程(11)—— 字元和字串型別C#字元字串型別
- C# 校驗字串是否漢字、其他字元,數字或字元C#字串字元
- C# 移除字串末尾指定字元C#字串字元
- 終端控制——如何在不輸入回車讀入字元字元
- 新版字元擷取函式字元函式
- C# 使用ffmpeg讀取監控影片流C#
- 面試必問的 Java 位元組流與字元流面試Java字元
- java的IO操作:位元組流與字元流操作Java字元
- c++ 從txt讀取資料 按照特殊字元拆分 gnssC++字元
- Java基礎(八)——IO流1_位元組流、字元流Java字元
- C語言fputc()函式:寫檔案函式(將一指定字元寫入檔案流中)C語言函式字元