1) I have the GemStone server running.
2) I have a Pharo 1.0 image with the gemStone Tools loaded.
3) I could succesfully login to the server after creating a session.现在,我在另一个Pharo-Image中创建了一个"abc.st"文件。
我找不到任何接口来帮助我使用gemStone工具将这个ST filein到gemStone服务器中。
我是不是遗漏了什么?
发布于 2012-05-30 00:06:29
使用GemTools将代码传输到GemStone的首选机制是使用Monticello包。如果你不熟悉使用Monticello,请阅读Pharo By Example Monticello chapter(pdf)。这里描述的基本原理可以应用于Pharo和GemStone。
也就是说,您可以通过执行以下操作将文件放入.st文件中:
(BinaryOrTextFile openReadOnServer: 'full path to abc.st')
fileIn;
close.戴尔
https://stackoverflow.com/questions/10794104
复制相似问题