0
我必須檢查一個文本文件是否存在或不存在,然後我必須替換一個字母,說一個到o。我已經完成了第一部分如何更換炭文件java替換字符
class FDExists{
public static void main(String args[]){
File file=new File("trial.java");
boolean exists = file.exists();
if (!exists) {
System.out.println("the file or directory you are searching does not exist : " + exists);
}else{
System.out.println("the file or directory you are searching does exist : " + exists);
}
}
}
這個我已經做
是否想用'o'替換'a'到文件中?或在文件名? – 2010-10-15 09:31:28
裏面的文件。我的意思是在數據中 – Sumithra 2010-10-15 09:34:30