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.
我正在编写一个将 .txt 脚本文件转换为 .svg 图像文件的应用程序。它是用 Java 编写的(Python 可能会更好,但我使用我拥有的工具),通过命令控制台执行,并且每次执行可以生成多个图像。
所以我的问题是,是否可以在执行时在查看器中打开图像?如果是,那又如何?最好的选择是file:///C:/Users/.../graphOne.svg通过网络浏览器执行文件位置 ( );答案越简单越好,因为我正在编写此代码集以供一般使用。
file:///C:/Users/.../graphOne.svg
尝试:
import java.awt.Desktop; // ... Desktop.getDesktop().browse(svgFile.toURI());
或者
import java.awt.Destktop; // ... Desktop.getDesktop().open(svgFile);