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.
如何关闭打开的excel文件?
打开excel代码为:
File file = new File("e:\\aaa.xlsx"); Desktop desktop = Desktop.getDesktop(); desktop.open(file);
什么是关闭代码?
只需使用 java 打开和关闭 Windows 应用程序,就像使用鼠标一样。
忘了它。在此处打开意味着已注册的应用程序 Excel 接管并打开一个窗口。之后,您无法控制,只能观看。Excel 将关闭。
File 是一个表示文件系统路径的类。它本身没有关联读取器/写入器的状态。Java 7 现在并行引入了一个更进化的类 Path。除了(显然)文件系统上的路径之外,它还存储什么文件系统。使用路径一可以有多个文件系统,如 ZipFileSystem。这允许您在 zip 中复制和重命名文件。
那只是一个阐述。