从 Java 调用 Graphviz dot

发布于 09-06 06:53 字数 54 浏览 4 评论 0原文

从 Java 程序调用外部程序(本例中为 graphviz 的点)并获取输出的最佳方法是什么?

What's the best way to call an external program (graphviz's dot in this case) from a Java program and grab the output?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

余生共白头2024-09-13 06:53:15

您可以使用 Graphviz Java API 类,它是 Runtime.exec() 的包装器,这是如果您的点二进制文件与您的 Java 应用程序位于同一服务器上。

如果您没有在服务器上安装 dot,或者您使用的是 Google AppEngine 之类的环境,无法在本地安装 dot 二进制文件,那么您可以使用 Graphviz Server,一个基于 Java 的轻量级 HTTP 服务器,您仍然需要在运行 Graphviz Server 的服务器上安装 dot 二进制文件。

You can use the Graphviz Java API class which is a wrapper for Runtime.exec(), this is if you have the dot binaries on the same server as your Java App.

If you don't have dot installed on the server or if you are using an environment like Google AppEngine where you can't install dot binaries locally then you can use Graphviz Server, a lightweight Java based HTTP server, you still need to install the dot binaries on the server on which you run Graphviz Server.

梦毁影碎の2024-09-13 06:53:15

运行时.exec()ProcessBuilder 去做吧。
您可以使用其中之一来创建进程,然后调用其 getInputStream 来获取已启动进程的输出流。

Runtime.exec() and ProcessBuilder do it.
You use one of them to create your process, then call its getInputStream to get the output stream of the launched process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文