您可以使用 X 命令或 SYSEXEC 语句调用 Java 应用程序。最简单的方法是输出一个输出文件,然后导入它。如果它是直接输出,您可能希望使用 PIPE 方法。该变量_infile_
将具有来自 OS 命令的输出,在本例中为 Java 应用程序。
https://blogs.sas.com/content/sgf/2016/03/11/using-a-pipe-to-return-the-output-of-an-operating-system-command-to-sas-software/
filename myfiles pipe "your command to the OS";
data results;
infile myfiles truncover;
input;
x = _infile_;
run;