从 Java 调用 Graphviz dot
从 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 技术交流群。
发布评论
评论(2)
梦毁影碎の2024-09-13 06:53:15
运行时.exec() 和 ProcessBuilder 去做吧。
您可以使用其中之一来创建进程,然后调用其 getInputStream 来获取已启动进程的输出流。
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您可以使用 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.