導航:首頁 > 版本升級 > net打開txt文件

net打開txt文件

發布時間:2023-01-19 18:09:34

⑴ 用.Net打開一個txt文件,怎麼對文件里的內容進行查找,替換

簡單的辦法是
1、File.ReadAllText()用這個放大讀出來文件內容,到一個字元串變內量
2、用Replace()這個方法替換字元串
3、再用容File.WriteAllText這個方法寫回到文件

string text = File.ReadAllText("D:\\1.txt");
string result = text.Replace("oldStr", "NewStr");
File.WriteAllText("D:\\1.txt", result);

⑵ 文件夾有多個txt,vb.net 怎麼逐一打開txt文檔,並對其中某兩行進行檢索,找滿足條件的文檔

1,逐個搜索文件夾里的所有TXT文件。

2,每搜索到一個TXT文件就進行對應操作。

⑶ vb.net如何打開選定文件夾下所有TXT文件,讀取數據,寫入數據,並保存數據至新的文件


IfFolderBrowserDialog.ShowDialog=Windows.Forms.DialogResult.OKThen
Dim資料夾AsString()=System.IO.Directory.GetFiles(FolderBrowserDialog.SelectedPath,"*")
ForEach文件In資料夾
MsgBox(My.Computer.FileSystem.ReadAllText(文件))'讀取數據
My.Computer.FileSystem.WriteAllText(文件,"數據",False)'寫入數據
Next
EndIf
EndUsing

⑷ vb.net 如何打開txt文件

說明:以下代碼在Microsoft Visual Basic 2005 (簡體中文版)中通過。
創建新項目:
在窗體上添加文本框2個:TextBox1,TextBox2
TextBox1 -- 用來編輯要寫入的文本文件的內容,或顯示打開的文本文件的內容
TextBox2 -- 用來輸入要打開或要寫入的文件名(包括盤符,路徑)(例如:c:\123.txt)
在窗體上添加2個按鈕:Button1,Button2
Button1 -- 寫入文件
Button2 -- 打開文件
代碼如下:
Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim w As New StreamWriter(TextBox2.Text)
w.Write(TextBox1.Text)
w.Close()
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim r As New StreamReader(TextBox2.Text)
Dim s As String
TextBox1.Text = ""
Do While r.Peek > -1 '是否到文件尾
s = r.ReadLine
' MessageBox.Show(r.Peek)
TextBox1.Text = TextBox1.Text & s & vbCrLf
Loop
r.Close()
End Sub
End Class

補充:你要把讀出的數據賦值給一個變數,只要:聲明一個變數為數值類型,然後只要讀取一行就可以了,把這行數據經過轉換成數值後賦給這個變數.

⑸ vb.net文件讀取txt

讀取每行TXT如下代碼:

VB.NETcode
PublicSubReadFileSample()
'打開程序當前路徑下的config.txt文件
'內容就是樓主貼出來的
DimreaderAsTextReader=File.OpenText("config.txt")
DimlineAsString=reader.ReadLine()'讀第一行
line=reader.ReadLine()'讀第二行
line=reader.ReadLine()'讀第三行
DimnAsInteger=3'當前行號
Whileline<>""Andn<50
line=reader.ReadLine()'讀下一行
n=n+1
EndWhile
DimitemsAsString()=line.Split("".ToCharArray(),StringSplitOptions.RemoveEmptyEntries)
ForEachitemAsStringInitems
Console.WriteLine(item)
Next
EndSub

⑹ vb.net中怎樣在菜單欄點打開文件來打開D盤中一個txt文件

import System.IO

用文件流讀
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim open As New OpenFileDialog
open.Filter = "テキスト ファイル (*.txt)|*.txt" & _
"|すべてのファイル (*.*)|*.*"

If open.ShowDialog = Windows.Forms.DialogResult.OK Then
TextBox1.Text = open.FileName

Dim file As New FileStream(open.FileName, FileMode.Open, FileAccess.Read)
Dim encoding As Encoding = encoding.GetEncoding(Util.ToString(Me.ComboBox1.SelectedItem))
Dim stream As New StreamReader(file, encoding)
Dim strB As New StringBuilder

While (Not stream.EndOfStream)
strB.AppendLine(stream.ReadLine)
End While
Me.RichTextBox1.Text = strB.ToString
stream.Close()
End If
End Sub

⑺ vb .net 程序怎麼默認打開txt記事本文件

樓下的根本不對。exe右鍵是沒有「打開方式」的,也沒必要因為這個問題而還原系統。把exe設置為直接運行,方法:新建一個txt文件,輸入ftype exefile="%1" %* ,保存,把擴展名改為bat,雙擊這個文件,就好了。

⑻ 在.NET中怎麼讀取.txt文件

class Program
{
static void Main(string[] args)
{
//使用StreamReader來讀取一個文本文件
//using (StreamReader sr = new StreamReader(@"C:\Users\SpringRain\Desktop\抽象類特點.txt",Encoding.Default))
//{
// while (!sr.EndOfStream)
// {
// Console.WriteLine(sr.ReadLine());
// }
//}

//使用StreamWriter來寫入一個文本文件
using (StreamWriter sw = new StreamWriter(@"C:\Users\SpringRain\Desktop\newnew.txt",true))
{
sw.Write("看我有木有把你覆蓋掉");
}
Console.WriteLine("OK");
Console.ReadKey();
}
}

⑼ asp.net如何在點擊按鈕時打開一個txt文檔

是要讀取裡面的內容吧!
Response.Write(GetInterIDList(fileName));//fileName是文件的物理路徑

//讀取txt文件的內容
public string GetInterIDList(string strfile)
{
string strout;
strout = "";
if (!File.Exists(strfile))
{
SDLX.Common.MessageBox.ShowMobile(this, "您要打開的文件不存在!");
}
else
{
StreamReader sr = new StreamReader(strfile, System.Text.Encoding.Default);
String input = sr.ReadToEnd();
sr.Close();
strout = input;
}
return strout;
}

閱讀全文

與net打開txt文件相關的資料

熱點內容
女漢子微信名霸氣十足 瀏覽:65
win10手機藍屏修復 瀏覽:419
windows2008激活工具 瀏覽:259
g71的編程應注意什麼 瀏覽:572
文件路徑不符合是什麼意思 瀏覽:543
qq如何換綁微信綁定 瀏覽:67
文件包下載的安裝包在哪裡 瀏覽:811
90版本升級不送 瀏覽:186
工具箱英文 瀏覽:382
南翔嘉定編程課哪裡好 瀏覽:853
win10改變文件格式 瀏覽:475
linux中的物理地址和虛擬地址 瀏覽:493
有哪些app可以接游戲訂單 瀏覽:472
蘋果硬碟數據恢復要多少錢 瀏覽:394
js綁定下拉框資料庫數據 瀏覽:448
cad文件怎麼復制到另一個文件里邊 瀏覽:858
dxp鑽孔文件 瀏覽:631
iphone大悅城換機 瀏覽:538
找結婚對象上什麼網站 瀏覽:974
學生信息管理系統程序設計報告 瀏覽:640

友情鏈接