gpt4 book ai didi

smalltalk - 如何在smalltalk中写入txt文件

转载 作者:行者123 更新时间:2023-12-02 19:44:30 26 4
gpt4 key购买 nike

我尝试使用这段代码:

f := 'testfile.txt' asFileReference.
f2 := f writeStream.
f2 nextPutAll: 'hello world'.
f2 close.
f content.

但是我得到了这个异常:

**FileDoesNotExistException**

最佳答案

'testfile.txt' asFileReference 
writeStreamDo: [ :stream | stream << 'Hello, World!' ].

这应该有效。但这是表达你之前所做的事情的另一种方式,所以我怀疑某些写入权限是错误的或类似的东西。

关于smalltalk - 如何在smalltalk中写入txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59572109/

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