91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

略阳县| 吴旗县| 三河市| 开鲁县| 和平县| 新民市| 简阳市| 抚松县| 百色市| 普宁市| 库车县| 白城市| 孟村| 曲水县| 赤壁市| 双鸭山市| 曲松县| 克拉玛依市| 新建县| 察隅县| 黄石市| 阿图什市| 遵化市| 崇明县| 玉树县| 道孚县| 宿松县| 金川县| 明星| 那坡县| 宁波市| 衢州市| 大竹县| 常宁市| 广宗县| 本溪市| 龙岩市| 乌兰浩特市| 澳门| 连南| 益阳市|