Пример #1
0
 private void copyFiles(String string, String string2) {
   File src = new File(string);
   File dest = new File(string2);
   FileInputStream fin;
   try {
     fin = new FileInputStream(src);
     FileOutputStream fout = new FileOutputStream(dest);
     int c;
     while ((c = fin.read()) >= 0) fout.write(c);
     fin.close();
     fout.close();
   } catch (FileNotFoundException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   } catch (IOException e) {
     e.printStackTrace();
   }
 }