- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 JSmooth 进行 JAVA 工作。
我看到每次启动时都会创建一个 tmp JAR。
创建的 tmp jar 文件大约为 10 Mb。
当我退出 JSmooth 构建的可执行 JAVA 应用程序时,
每次启动时都会保留临时 jar 文件。
我阅读了以下有关 JSmooth 的主题:
JSmooth - exit application
7.1.2.
What happens to the extracted jar file when the java application exits?
Whenever possible, the wrappers delete the file on exit. Note however that this is not always possible. For example, an instance of a JVM created using the JVM DLL does not unload cleanly. This behaviour (not to call it a bug) is documented by Sun, and there is no known work-around for it.
Both Windowed and Console wrapper always prefer the JVM instanciation methods that allow them to delete the temp jar after the application exits. Note that embedding a jar in the exe is not required, it is always a safe choice to just leave it on the filesystem near the executable, either in the same directory, or in a sibling or parent directory.
Note also that deleting the files in the windows TEMP directory is not required for Windows applications, and most application just leave them, letting the operating system manage it. The standard behaviour of MS Windows is to propose the user to delete the temporary files when the disks are running low on available space.
我尝试在导出处删除 jar:
//For matching convention, I wrote the file in a not null package
package main;
import java.io.File;
//It is an utility class, so the class is final
public final class Constants {
//The tmp folder key
private static final String TMP_FOLDER = "java.io.tmpdir";
//The main class
private static Class<?> _mainClass_ = Constants.class;
//It is an utility class, so hide the constructor
private Constants(){
}
public static void main(String[] _args) {
//Processing
//....
exit();
}
/**@see System#exit(int)*/
public static void exit() {
String path_ =_mainClass_.getProtectionDomain().getCodeSource().getLocation().getPath();
//For keeping portability OS, replace all back slashes by slashes
path_ = new File(path_).getAbsolutePath().replace("\\", "/");
//For keeping portability OS, replace all back slashes by slashes
String folder_ = System.getProperty(TMP_FOLDER).replace("\\", "/");
if (path_.startsWith(folder_)) {
//If the jar is located in the temp folder, then delete it before exit.
System.out.println("path: "+path_);
System.out.println("folder: "+folder_);
//Try remove temp jar
new File(path_).delete();
new File(path_).deleteOnExit();
}
//Exit the program
System.exit(0);
}
}
我的 JSmooth 文件:
<?xml version="1.0" encoding="ISO-8859-1"?>
<jsmoothproject>
<JVMSearchPath>exepath</JVMSearchPath>
<JVMSearchPath>registry</JVMSearchPath>
<JVMSearchPath>javahome</JVMSearchPath>
<JVMSearchPath>jrepath</JVMSearchPath>
<JVMSearchPath>jdkpath</JVMSearchPath>
<JVMSearchPath>jview</JVMSearchPath>
<arguments></arguments>
<bundledJVMPath>jre</bundledJVMPath>
<currentDirectory>${EXECUTABLEPATH}</currentDirectory>
<embeddedJar>false</embeddedJar>
<executableName>Test.exe</executableName>
<initialMemoryHeap>-1</initialMemoryHeap>
<jarLocation>target\Test.jar</jarLocation>
<mainClassName>main.Constants</mainClassName>
<maximumMemoryHeap>1073741824</maximumMemoryHeap>
<maximumVersion>1.7</maximumVersion>
<minimumVersion>1.7</minimumVersion>
<skeletonName>Windowed Wrapper</skeletonName>
<skeletonProperties>
<key>Message</key>
<value>Java has not been found on your computer. Do you want to download it?</value>
</skeletonProperties>
<skeletonProperties>
<key>URL</key>
<value>http://www.java.com</value>
</skeletonProperties>
<skeletonProperties>
<key>SingleProcess</key>
<value>0</value>
</skeletonProperties>
<skeletonProperties>
<key>SingleInstance</key>
<value>0</value>
</skeletonProperties>
<skeletonProperties>
<key>JniSmooth</key>
<value>0</value>
</skeletonProperties>
<skeletonProperties>
<key>Debug</key>
<value>1</value>
</skeletonProperties>
</jsmoothproject>
我认为计算机的可用空间非常危险(每次启动时,可用空间都会减少 10 Mb)因为计算机可能会出现故障。
希望我的问题是准确的,不会无缘无故打扰别人。
我非常感谢那些能够抽出时间回答的人。
最佳答案
Java 无法删除 Windows 下当前正在使用的文件。这是 Windows 的限制。
这意味着任何通过 file.delete()
或 file.deleteOnExit()
从程序中删除它们的尝试都将失败。这也是JSmooth出现bug,无法删除文件的原因。
虽然您无法直接删除该文件,但您可以启动一个辅助程序(例如 cmd)来安排在 10 秒左右之后删除该文件,这可以通过在退出程序时运行以下命令来完成:
new ProcessBuilder("cmd","/c","ping 127.0.0.1 && del "+filename).inheritIO().start();
因为 Windows 没有适当的命令行 sleep 命令,所以我滥用 ping 命令在运行下一个命令之前给予 3 秒的延迟。此技巧的解释如下:How to sleep for 5 seconds in Windows's Command Prompt? (or DOS)
关于java - 导出处清洁问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35557400/
我对 unix 套接字(TCP 本地)有点困惑 我有一个服务器和一个客户端: client 通过套接字向服务器发送一些信息(使用send)多次 server 打印此数据(server 调用 recv
我一直在尝试从数据集中清理特定列。我多次使用 .apply() 函数以便抛出任何可能出现在列的字符串值中的符号。 对于每个符号,函数如下:.apply(lambda x: x.replace("",
我正在按照 http://nvie.com/posts/a-successful-git-branching-model/ 的建议进行独立项目 我使用以下代码发布了我的代码的版本 1: git che
我一直在尝试从数据集中清理特定列。我多次使用 .apply() 函数以便抛出任何可能出现在列的字符串值中的符号。 对于每个符号,函数如下:.apply(lambda x: x.replace("",
我正在按照 http://nvie.com/posts/a-successful-git-branching-model/ 的建议进行独立项目 我使用以下代码发布了我的代码的版本 1: git che
我想让我的 Controller 变薄,并将业务逻辑与其他操作分开。例如我有一个 Action : public function indexAction() { $languages = $
如何清理 react native 项目? 有什么方法可以像我们可以清理 xcode 项目一样清理 React Native 项目? 任何帮助将不胜感激! 最佳答案 一个 react-native 项
我创建了一组 jRadioButton, 每个按钮都有一个操作监听器,用于在单独的窗口中创建 JTable。 我希望当我按下另一个按钮时,框架将被清理,然后执行另一个JTable, ButtonGro
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this q
我有几项任务要在不共享数据的 AWS EMR 上执行,我想使用同一个 EMR 一个接一个地执行它们。有没有办法将正在运行的 EMR 清理回其初始状态(删除配置单元表,清理所有 HDFS 文件等)避免数
更新 bundle 后,您将拥有一些可能已过时的 gem——因为已安装该 gem 的更新版本。 bundle 可执行文件下没有这样的命令,即 bundle clean。如何摆脱这些过时的 gem ?
当我从命令提示符运行“mvn clean tomcat:run”(未指定任何 tomcat 版本)命令以运行我的 Web 应用程序时,它会下载 tomcat 6.0.29 版本依赖项,如下所示: 组织
我可以在我的 iOS 应用程序中使用干净的 c++ 版本的 openGL 吗?我想写一些基本的包装器,然后将我的 C++ 代码与这个包装器和 App 连接起来。或者我必须只使用 openGLES?使用
我是 Apache/mod_rewrite 的新手。我需要这样做 以下网址: http://www.example.com/applications/seo-friendly-text-for-app
有人能告诉我什么是清理不良 HTML 以便 BeautifulSoup 可以处理它的更好方法 - 应该使用 BeautifulSoup 的按摩方法还是使用正则表达式清理它? 最佳答案 我想我应该改写我
假设我有一个 Controller ,其中包含一个呈现 View 的操作。 View 需要数据来呈现。我知道以下方法来准备并将其发送到 View : 使用实例变量 class CitiesContro
我的 ASP.NET MVC 项目已推送到 Azure 网站,其中包含无效的额外 DLL。这导致项目无法正常运行。如果创建了一个新网站,它会完美运行。在本地清理项目并重新部署并不能解决问题。有没有办法
我尝试了很多变体,但无法实现此目的。一个示例(子 pom.xml): org.apache.maven.plugins maven-clean-plugin
我有一些关于 Vaadin 架构的简单问题。 Vaadin 文档声称它是一个 Single-Page Application (SPA)但是这怎么可能呢,因为页面是在服务器端渲染的,到处都是一些 Ja
我的 Dockerfile 看起来像 FROM python:3.7-slim # System setup ENV USER app ENV APP_DIR /home/app RUN userad
我是一名优秀的程序员,十分优秀!