亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

VB.NET中 ReadLine()方法如何使用

發布時間:2021-07-23 16:25:49 來源:億速云 閱讀:510 作者:Leah 欄目:編程語言

VB.NET中 ReadLine()方法如何使用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

修改源代碼

更改 C# 源文件 (class1.cs),如下面以斜體突出顯示的代碼所示。其他的差異(如類名)可忽略不計。

// Import namespaces  using System;  using System.Collections;  using System.IO;  // Declare namespace  namespace MsdnAA  {      // Declare application class      class QuickSortApp      {          // Application initialization          static void Main (string[] szArgs)          {              ... ... ...              // Read contents of source file              string szSrcLine;              ArrayList szContents = new ArrayList ();              FileStream fsInput = new FileStream (szSrcFile, FileMode.Open,                  FileAccess.Read);              StreamReader srInput = new StreamReader (fsInput);              while ((szSrcLine = srInput.ReadLine ()) != null)              {                  // Append to array                  szContents.Add (szSrcLine);              }              srInput.Close ();              fsInput.Close ();              // TODO: Pass to QuickSort function              // Write sorted lines              FileStream fsOutput = new FileStream (szDestFile,                  FileMode.Create, FileAccess.Write);              StreamWriter srOutput = new StreamWriter (fsOutput);              for (int nIndex = 0; nIndex < szContents.Count; nIndex++)              {                  // Write line to output file                  srOutput.WriteLine (szContents[nIndex]);              }              srOutput.Close ();              fsOutput.Close ();              // Report program success              Console.WriteLine ("\nThe sorted lines have been written.\n\n");          }      }  }

從源文件進行讀取

使用 FileStream 類打開源文件,然后加入 StreamReader 類,這樣我們就可以使用它的VB.NET ReadLine()方法了。現在,我們調用VB.NET ReadLine()方法,直到它返回 null,這表示到達文件結尾。在循環過程中,我們將讀取的行存儲到字符串數組中,然后關閉這兩個對象。

VB.NET中 ReadLine()方法如何使用


寫入輸出文件

假設已經用 QuickSort 對字符串數組進行了排序,接下來要做的事情就是輸出數組的內容。按照同樣的方式,我們將 StreamWriter 對象附加到 FileStream 對象上。這使得我們可以使用 WriteLine() 方法,該方法能夠很方便地模仿 Console 類的行為。一旦遍歷了數組,我們便可以象前面一樣關閉這兩個對象。

VB.NET中 ReadLine()方法如何使用

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上高县| 河西区| 会东县| 乌审旗| 金阳县| 五家渠市| 天水市| 浠水县| 泰州市| 沁源县| 乌鲁木齐县| 林周县| 德安县| 江孜县| 冀州市| 隆安县| 永胜县| 洪洞县| 伊春市| 修水县| 西宁市| 磴口县| 台前县| 鹤山市| 德令哈市| 连云港市| 大庆市| 霞浦县| 田阳县| 孝昌县| 邹城市| 日照市| 香格里拉县| 中超| 墨玉县| 永平县| 莲花县| 库伦旗| 甘谷县| 大丰市| 晋宁县|