Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经开始探索 CAPL 编程。我想从 XML 文档中读取输入,但无法找到如何执行此操作。CAPL 支持吗?如果是,我们该怎么做?如果否,CAPL 支持的其他类型的外部文件是什么?
CAPL 中没有内置 xml 解析器。您应该能够使用以下命令打开文件:
OpenFileWrite("Log.txt",2);
查看 CAPL 帮助以获取更多文件功能。