我正在尝试使用 LotusScript 将一些文本导出到 UTF-8 文件。我检查了文档,以下行应该将我的文本输出为 UTF-8,但 Notepad++ 说它是 ANSI。
Dim streamCompanies As NotesStream
Dim sesCurrent as New NotesSession
Set streamCompanies = sesCurrent.CreateStream
Call streamCompanies.Open("C:\companies.txt", "UTF-8")
Call streamCompanies.WriteText("Test")
streamCompanies.Close
当我尝试使用 UTF-16 而不是 UTF-8 时,生成的文件格式是正确的。谁能指出我如何在 Windows 平台上使用 LotusScript 编写 UTF-8 文件的正确方向?