java窗口关闭后自动初始化_java实现创建临时文件然后在程序退出时自动删除文件...

通过java的File类创建临时文件,然后在程序退出时自动删除临时文件。下面将通过创建一个JFrame界面,点击创建按钮在当前目录下面创建temp文件夹且创建一个以mytempfile******.tmp格式的文本文件。代码如下:

import java.io.*;

import java.util.*;

import javax.swing.*;

import java.awt.event.*;

/**

* 功能: 创建临时文件(在指定的路径下)

*/

public class TempFile implements ActionListener

{

private File tempPath;

public static void main(String args[]){

TempFile ttf = new TempFile();

ttf.init();

ttf.createUI();

}

//创建UI

public void createUI()

{

JFrame frame = new JFrame();

JButton jb = new JButton("创建临时文件");

jb.addActionListener(this);

frame.add(jb,"North");

frame.setSize(200,100);

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

frame.setVisible(true);

}

//初始化

public void init(){

tempPath = new File("./temp");

if(!tempPath.exists() || !tempPath.isDirectory())

{

tempPath.mkdir();  //如果不存在,则创建该文件夹

}

}

//处理事件

public void actionPerformed(ActionEvent e)

{

try

{

//在tempPath路径下创建临时文件"mytempfileXXXX.tmp"

//XXXX 是系统自动产生的随机数, tempPath对应的路径应事先存在

File tempFile = File.createTempFile("mytempfile", ".txt", tempPath);

System.out.println(tempFile.getAbsolutePath());

FileWriter fout = new FileWriter(tempFile);

PrintWriter out = new PrintWriter(fout);

out.println("some info!" );

out.close(); //注意:如无此关闭语句,文件将不能删除

//tempFile.delete();

tempFile.deleteOnExit();

}

catch(IOException e1)

{

System.out.println(e1);

}

}

}

效果图:

bcd07ac400e04c11ca695c07d90beb2a.png

点击创建临时文件效果图:

a3c47c65372305477adf4c32a7eed3b2.png

非常简单实用的功能,希望小伙伴们能够喜欢。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值