gpt4 book ai didi

string - 如何在 Delphi 中将字符串保存到 .txt 文件?

转载 作者:行者123 更新时间:2023-12-03 14:34:31 31 4
gpt4 key购买 nike

我需要制作一个程序,生成一个密码,该密码以文本文件格式保存在我设置的特定目标中,并且用户需要打开 .txt 以获取密码来“解锁”另一个程序。

我已经获得了在字符串 sPass 中生成密码的代码,现在我需要使用 SaveToFile 函数将其保存到我创建的名为 Password.txt 的文本文件中,但我找不到使用 SaveTo 的通用形式Delphi中的文件函数,我不知道将sPass和Password.txt放在函数中的哪里。

它应该是这样的:SaveToFile(...),但我不知道如何在Password.txt中保存sPass

编辑:

还有一个问题,如何在添加字符串之前删除Password.txt中先前存储的内容,以便在添加字符串之前Password.txt为空?谢谢

最佳答案

现代方式是在 IOUtils(Delphi 2010 及更高版本)中使用 TFile.WriteAllText

procedure WriteAllText(const Path: string; const Contents: string); overload; static;

Creates a new file, writes the specified string to the file, and then closes the file. If the target file already exists, it is overwritten.

关于string - 如何在 Delphi 中将字符串保存到 .txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7752273/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com