请各位大虾赐教
1.读取IE文件内容时,存储在fStr中,但读出的中文为乱码,不知如何解决,请帮忙
2.我想读出IE文件正文部分,然后批量Copy到Word文件中,不知如何编写代码,请各位帮忙

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim f
        Dim fStr As String

        f = My.Computer.FileSystem.GetFiles("C:\Documents and Settings\Administrator\桌面\1\")

        For Each foundFile As String In f
            fStr = My.Computer.FileSystem.ReadAllText(foundFile)
            'Debug.Print(fStr)
        Next

End Sub