当前位置:编程学习 > JAVA >>

如何把已经存在的文件清空内容

文件已经存在了并且知道了文件的路径,如何把文件的内容删除啊。请教啊 --------------------编程问答-------------------- 没记错的话,似乎是用 FileWriter 打开它(覆盖方式),然后再关闭,就清空了。 --------------------编程问答-------------------- RandomAccessFile   raf   =   new   RandomAccessFile( "temp.txt ",   "rw "); 

raf.setLength(   0   ); 

raf.close();  --------------------编程问答--------------------

File uploadedFile = new File(request.getRealPath("/") + "FileWork/" + tempFileName);
if (uploadedFile.exists()) 
{
    uploadedFile.delete();
}

--------------------编程问答-------------------- 如何打开它然后把它的长度设置为0。
--------------------编程问答--------------------
引用 2 楼  的回复:
RandomAccessFile   raf   =   new   RandomAccessFile( "temp.txt ",   "rw "); 

raf.setLength(   0   ); 

raf.close();

++ --------------------编程问答-------------------- 楼上已有答案 --------------------编程问答-------------------- 好使
引用 2 楼  的回复:
RandomAccessFile   raf   =   new   RandomAccessFile( "temp.txt ",   "rw "); 

raf.setLength(   0   ); 

raf.close();
--------------------编程问答-------------------- 额,我是重新又新建了次
补充:Java ,  Web 开发
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,