java存储文件设置时间长短

java存储文件设置时间长短,第1张

在Java中,我们可以使用文件类(File Class)和Path类(Path Class)来处理文件,包括创建、读取和修改文陪埋件的属性,如文件的最后修改时间(Last Modified Time)。如果要设置文件的存储族握时间长短,可以通过修改文件的最后修改时间来实现。例如,可以使用File类的lastModified()方法获取文件的最后修改时间,并使用setLastModified()方法将其更改为所需的日期和时间。

但需要注意的是,修改文件的最后修改时间是一项敏感 *** 作,一般情况下只有管理员或超级用户才能执行该 *** 作。此外,修改文件的最后修改时间可能会导致其他程序无法正常工作,因此应谨慎使用。

另外,如果您想要在Java中对文件进行定期删除,可以使用Java的定时任务机制,比如Timer和ScheduledExecutorService。这些类可用于设置任务的执行时间和间隔,并在达到指定时间后执行相应的 *** 作,比如删除文件。

总之,在Java中设置文件的存储时间长短是一项比较复杂的 *** 作,需要根据具体需求和芦穗蚂情况进行调整和配置

这是我原来做的塌差例子,里面有文游宴件储存的内容,代码不多,给你参考参考.

/**

* 五个按钮的故事,西西哈。

*/

import java.awt.*

import java.awt.event.*

import java.io.*

public class FileMessage extends Frame implements ActionListener

{

private static final long serialVersionUID = 10L

Dialog dia

private Panel p

private File fi

Process po=null

private String s

private TextArea ta

private FileDialog fd

private Button b1,b2,b3,b4,b5

private Button b6

public FileMessage()

{

super("文本文件处理")

setBackground( Color.LIGHT_GRAY )

setLocation(200,300)

setResizable( false)

setVisible( true)

addWindowListener( new WindowAdapter()

{

public void windowClosing(WindowEvent e)

{

System.exit( 0)

}

})

}

public void init()

{

ta=new TextArea("\n\n\n\n\n\t\t\t\t文本显示区")

ta.setSize(30,5)

ta.setEditable(false)

add( ta,"North")

p=new Panel()

add( p,"Center")

b1=new Button("浏览")

b2=new Button("保存")

b3=new Button("清空")

b4=new Button("关闭")

b5=new Button("独立打开")

b6=new Button("确团磨皮定")

p.add(b1)

p.add(b2)

p.add(b3)

p.add(b4)

p.add(b5)

b1.addActionListener(this)

b2.addActionListener(this)

b3.addActionListener(this)

b4.addActionListener(this)

b5.addActionListener(this)

b6.addActionListener(this)

fd=new FileDialog(this,"请选择文件",FileDialog.LOAD)

fd.setDirectory("f:\\note")

pack()

dia=new Dialog(this,"注意",true)

dia.setLayout(new BorderLayout())

Panel p1=new Panel()

p1.add( b6)

dia.add(new Label(" 请先选择文件"),BorderLayout.CENTER)

dia.add( p1,BorderLayout.SOUTH)

dia.addWindowListener( new WindowAdapter()

{

public void windowClosing(WindowEvent e)

{

dia.setVisible( false)

}

})

dia.setLocation(310,370)

dia.setSize(200,130)

}

public static void main(String[] args)

{

new FileMessage().init()

}

public void actionPerformed(ActionEvent e)

{

if(e.getSource()==b1)

{

fd.setVisible(true)

s=fd.getDirectory()+fd.getFile()

fi=new File(s)

byte[] b=new byte[(int)fi.length()]

try

{

new FileInputStream(fi).read(b)

ta.setText(new String(b,0,(int)fi.length()))

}

catch(Exception e1){}

ta.setEditable(true)

}

else if(e.getSource()==b2)

{

try

{

if(ta.getText().equals("保存成功")||ta.getText() .equals( ""))

{}

else

{

new FileOutputStream(fi).write(ta.getText().getBytes())

ta.setText("保存成功")

ta.setEditable(false)

}

}

catch(FileNotFoundException e1)

{

ta.setText(e1.getMessage())

}

catch(IOException e1)

{

ta.setText("出现IOException异常")

}

}

else if(e.getSource()==b4)

System.exit(0)

else if(e.getSource()==b3)

{

ta.setText("")

ta.setEditable( false)

}

else if(e.getSource()==b5)

{

if(s==null)

{

dia.setVisible(true)

}

else

{

try

{

po=Runtime.getRuntime().exec("notepad.exe "+s)

}

catch(Exception ei)

{}

}

}

else if(e.getSource() ==b6)

{

dia.setVisible(false)

}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12220233.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存