springboot 在windows 系统下打开指定路径下文件
/** * 打开指定文件 * * @param f1 * * @throws IOException */ public static void open(File f1) throws IOException { boolean exists = f1.exists(); Assert.isTrue(f1.exists(),"文件不存在"); java.awt.Desktop.getDesktop().open(f1); }
springboot 在windows 系统下打开指定路径下文件
/** * 打开指定文件 * * @param f1 * * @throws IOException */ public static void open(File f1) throws IOException { boolean exists = f1.exists(); Assert.isTrue(f1.exists(),"文件不存在"); java.awt.Desktop.getDesktop().open(f1); }