在VB中怎么实现 把输入的文字 另外保存为TXT文档?
展开全部
下面是两个函数你可以 学习一下 文件的基本 读 写
你要查看要 open 的功能 如果会了 你的问题就不是问题了
''' 功能 读取文本文件 返回文本文件的字符串 参数 filepath 为 文件路径
Function ReadTxtFile(FilePath As String) As String
If Len(Dir(FilePath)) Then'判断文件是不是存在
Dim s() As Byte
ReDim s(FileLen(FilePath))'使数组和文件一样大
Open FilePath For Binary As #1'打开文件
Get #1, , s'读取
Close #1'关闭 很重要 不用了就关闭文件
ReadTxtFile = StrConv(s, vbUnicode)'数组转换成字符串
Else
MsgBox ("文件不存在!")
End If
End Function
'''写入文件 参数为 filepath : 文件路径, word 是写入的内容
Sub WriteTxtFile(FilePath As String, word As String)
If Len(Dir(FilePath)) = 0 Then MsgBox ("文件不存在!"): Exit Sub
Open FilePath For Append As #1'以追加的形式打开文件
Print #1, word'写入内容
Close #1'关闭文件
End Sub
你要查看要 open 的功能 如果会了 你的问题就不是问题了
''' 功能 读取文本文件 返回文本文件的字符串 参数 filepath 为 文件路径
Function ReadTxtFile(FilePath As String) As String
If Len(Dir(FilePath)) Then'判断文件是不是存在
Dim s() As Byte
ReDim s(FileLen(FilePath))'使数组和文件一样大
Open FilePath For Binary As #1'打开文件
Get #1, , s'读取
Close #1'关闭 很重要 不用了就关闭文件
ReadTxtFile = StrConv(s, vbUnicode)'数组转换成字符串
Else
MsgBox ("文件不存在!")
End If
End Function
'''写入文件 参数为 filepath : 文件路径, word 是写入的内容
Sub WriteTxtFile(FilePath As String, word As String)
If Len(Dir(FilePath)) = 0 Then MsgBox ("文件不存在!"): Exit Sub
Open FilePath For Append As #1'以追加的形式打开文件
Print #1, word'写入内容
Close #1'关闭文件
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |