VB.net 读取文本文件?

点击按钮1,读取(创建)“c:⼀123.txt”中的文本。求语法
2024-11-26 19:46:31
推荐回答(5个)
回答1:

1、实现上传按钮方法代码。

2、判断图片对象是否为空代码。

3、取得数据库字段 dt.Rows(0)("Pic")方法代码。

4、字节数组转换为Image类型方法代码。

5、处理SQL中操作Image类型方法代码。

6、实现的上传结果。

回答2:

IO.File.ReadAllBytes("c:/123.txt")
IO.File.ReadAllLines("c:/123.txt")
IO.File.ReadAllText("c:/123.txt")
上面是读取
IO.File.CreateText("c:/123.txt")
IO.File.WriteAllText("c:/123.txt", "")
IO.File.WriteAllLines("c:/123.txt", New String() {})
IO.File.WriteAllBytes("c:/123.txt", New Byte() {})
这几个都可创建

回答3:

if IO.File.Exists("c:/123.txt") = false Then
msgbox("文件不存在")
exit sub
End if
如果取文件里面的话使用这个





if IO.File.Exists(Application.StartupPath & "\C:\123.txt")  = False Then
msgbox("文件不存在")
exit sub
End if
正确的
if IO.File.Exists(Application.StartupPath & "\C:\123.txt")  = False Then
msgbox("文件存在")
exit sub
End if

回答4:

if IO.File.Exists("c:/123.txt")=false then
msgbox("文件不存在")
exit sub
end if

回答5:

就这样很简单
Dim fileContents As String
fileContents = My.Computer.FileSystem.ReadAllText("c:/123.txt") '读取
My.Computer.FileSystem.WriteAllText("c:/123.txt", "adsfwqetiuj", False, System.Text.Encoding.Unicode)‘保存