我使用了以下代码,但我无法删除该文件。有人可以帮忙吗?
public class Delete{
public static void main(final String[] args){
final Thread a = new Thread();
a.start();
}
public void run(){
final String fileName = "default\\sample.txt";
// A File object to represent the filename
final File f = new File(fileName);
// Make sure the file or directory exists and isn't write protected
if(!f.exists()){
throw new IllegalArgumentException(
"Delete: no such file or directory: " + fileName);
}
if(!f.canWrite()){
throw new IllegalArgumentException("Delete: write protected: "
+ fileName);
}
// If it is a directory, make sure it is empty
if(f.isDirectory()){
final String[] files = f.list();
if(files.length > 0){
throw new IllegalArgumentException(
"Delete: directory not empty: " + fileName);
}
}
// Attempt to delete it
f.delete();
}
}
或者还有其他方法可以使用线程删除文件吗?
答案 0 :(得分:0)
这就是你要找的东西。
public class Delete extends Thread {
public static void main(String[] args) {
Thread a = new Delete();
a.start();
}
public void run() {
// your implementation
}
}
答案 1 :(得分:0)
方法run()不称为
import java.io.File;
public class Delete extends Thread {
public static void main(String[] args) {
Delete a = new Delete();
a.start();
}
public void run()
{
String fileName = "C:\\temp\\todelete.txt";
File f = new File(fileName);
if (!f.exists())
throw new IllegalArgumentException("Delete: no such file or directory: " + fileName);
if (!f.canWrite())
throw new IllegalArgumentException("Delete: write protected: " + fileName);
if (f.isDirectory()) {
String[] files = f.list();
if (files.length > 0)
throw new IllegalArgumentException("Delete: directory not empty: " + fileName);
}
boolean success = f.delete();
if (!success)
throw new IllegalArgumentException("Delete: deletion failed");
}
}
答案 2 :(得分:-1)
你必须用:
开始你的主题Thread a = new Thread(new Delete());
a.start();
<强>更新强>
您的Delete
课程还需要实施Runnable
。