webclient.downloadfile()本地地址的写法。求教。

2025-01-07 22:36:28
推荐回答(1个)
回答1:

  
             String fileSavePath = "E:/temp";
       File saveFile = new File(fileSavePath);
       if(!saveFile.exists()){
     saveFile.mkdirs();
      }
      String  newFileName ="filename.exe";
       uploadFile = new File(fileSavePath+newFileName);
       if(!uploadFile.exists()){
       uploadFile.createNewFile();
       }