在 Java 客户端中捕获 WLST 输出
我目前正在从 Java 客户端调用 WLST。我想将 WLST 函数的结果返回给我的 Java 客户端。我希望有人能帮助我。
问候, 萨拉·查拉
I am presently invoking WLST from a Java Client. I would like to return the result of the WLST function back to my Java Client. I was hoping if someone could help me.
Regards,
Sarat Challa
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
考虑http://docs.oracle.com/cd/E12840_01/wls/docs103/config_scripting/using_WLST.html#wp1094015 将 WLST/Jython 输出重定向到文件。将您喜欢的任何内容写入该文件,然后从 Java 调用方读取。
此外,应该可以直接读取 WLST 执行器的 STDOUT,具体取决于您如何从 Java 调用它。
Consider http://docs.oracle.com/cd/E12840_01/wls/docs103/config_scripting/using_WLST.html#wp1094015 to redirect WLST/Jython output to a file. Write anything you like into that file, then read from your Java caller.
Also, directly reading the STDOUT of the WLST executor should be possible, depending on how you call that from Java.
Sarat,不太清楚 - 这个 Java 客户端是什么?它是jsp/servlet还是普通的java程序? Java 支持记录器。您可以参考
Java 程序中的
Sarat, Not really clear about - What is this Java client? is it a jsp/servlet or normal java program? Java supports logger. You can refer to
framework within the Java programs.