6

使用する

File.AppendAllText("c:\mytextfile.text", "This is the first line")
File.AppendAllText("c:\mytextfile.text", "This is the second line")

Enterキーを押したかのように、2行目のテキストを最初の行の下に表示するにはどうすればよいですか?このようにすると、2番目の行が最初の行のすぐ隣に配置されます。

4

3 に答える 3

10

使用するEnvironment.NewLine

File.AppendAllText("c:\mytextfile.text", "This is the first line")
File.AppendAllText("c:\mytextfile.text", Environment.NewLine + "This is the second line")

または、StreamWriter

Using writer As new StreamWriter("mytextfile.text", true)
    writer.WriteLine("This is the first line")
    writer.WriteLine("This is the second line")
End Using
于 2012-04-10T19:32:05.917 に答える
3

この呼び出しが多数ある場合は、StringBuilderを使用する方がはるかに優れています。

Dim sb as StringBuilder = New StringBuilder()
sb.AppendLine("This is the first line")
sb.AppendLine("This is the second line")
sb.AppendLine("This is the third line")
....
' Just one call to IO subsystem
File.AppendAllText("c:\mytextfile.text", sb.ToString()) 

書き込む文字列が非常に多い場合は、すべてをメソッドでラップできます。

Private Sub AddTextLine(ByVal sb As StringBuilder, ByVal line as String)
    sb.AppendLine(line)
    If sb.Length > 100000 then
        File.AppendAllText("c:\mytextfile.text", sb.ToString()) 
        sb.Length = 0
    End If        
End Sub
于 2012-04-10T19:37:00.980 に答える
2

多分:

File.AppendAllText("c:\mytextfile.text", "This is the first line")
File.AppendAllText("c:\mytextfile.text", vbCrLf & "This is the second line")

vbCrLf改行の定数です。

于 2012-04-10T19:30:26.327 に答える