用FTP也是很方便的。一个指令搞定。

解决方案 »

  1.   

    Runtime r = Runtime.getRuntime();
     Process p = r.exec("");执行研究一下。
      

  2.   

    try {
          fos = new FileOutputStream(destFile);
          bos = new BufferedOutputStream(fos);      int c = -1;
          while((c=bis.read())!=-1){
            bos.write(c);
          }
          bos.flush();
        }
        catch (Exception ex) {    }
      

  3.   

    zkjbeyond(jigi) :
    能解释一下吗?