我得到這個錯誤在Eclipse:Java項目錯誤
The constructor File(List<String>) is undefined
的代碼
public void deleteFunction(int id){
Toast.makeText(this, "Sters", Toast.LENGTH_SHORT).show();
File file = new File(path);
boolean deleted = file.delete();
}
的路徑是什麼變數?這是一個列表?如果是這樣,那可能是你的問題。 –
nick
@nick如何解決這個問題? –
有幾種方法。如果path應該是一個String,那麼將其類型改爲String。如果它應該是一個列表那麼你會想要的東西像文件=新文件(path.get(0)); –
nick