When are Java temporary files deleted?

前端 未结 6 1498
时光说笑
时光说笑 2020-12-07 21:36

Suppose I create a temporary file in Java with the method

File tmp = File.createTempFile(prefix, suffix);

If I do not explicity call the

6条回答
  •  北海茫月
    2020-12-07 22:29

    You can manually delete the file before terminating the process if you want to, however when the process is terminated the file will be deleted as well.

提交回复
热议问题