| @ -0,0 +1,17 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <projectDescription> | |||||
| <name>myCopy</name> | |||||
| <comment></comment> | |||||
| <projects> | |||||
| </projects> | |||||
| <buildSpec> | |||||
| <buildCommand> | |||||
| <name>org.eclipse.jdt.core.javabuilder</name> | |||||
| <arguments> | |||||
| </arguments> | |||||
| </buildCommand> | |||||
| </buildSpec> | |||||
| <natures> | |||||
| <nature>org.eclipse.jdt.core.javanature</nature> | |||||
| </natures> | |||||
| </projectDescription> | |||||
| @ -0,0 +1,2 @@ | |||||
| eclipse.preferences.version=1 | |||||
| encoding/<project>=UTF-8 | |||||
| @ -0,0 +1,14 @@ | |||||
| eclipse.preferences.version=1 | |||||
| org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | |||||
| org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | |||||
| org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | |||||
| org.eclipse.jdt.core.compiler.compliance=17 | |||||
| org.eclipse.jdt.core.compiler.debug.lineNumber=generate | |||||
| org.eclipse.jdt.core.compiler.debug.localVariable=generate | |||||
| org.eclipse.jdt.core.compiler.debug.sourceFile=generate | |||||
| org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | |||||
| org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | |||||
| org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | |||||
| org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning | |||||
| org.eclipse.jdt.core.compiler.release=enabled | |||||
| org.eclipse.jdt.core.compiler.source=17 | |||||
| @ -0,0 +1 @@ | |||||
| Hola esto es una prueba de la copia | |||||
| @ -0,0 +1,44 @@ | |||||
| package dam.com.es; | |||||
| import java.io.File; | |||||
| import java.io.FileInputStream; | |||||
| import java.io.FileNotFoundException; | |||||
| import java.io.IOException; | |||||
| import java.io.FileOutputStream; | |||||
| public class MyCopy { | |||||
| public static void main(String [] args) | |||||
| throws FileNotFoundException, IOException, InterruptedException{ | |||||
| File copy = new File("FicheroOrigen.txt.txt"); | |||||
| FileInputStream in = new FileInputStream(copy); | |||||
| FileOutputStream out = new FileOutputStream("C:\\Users\\kevin\\MyCopy\\FicheroDestino.txt"); | |||||
| int n=0; | |||||
| System.out.println ("\nCopiando ..."); | |||||
| System.out.print ("["); | |||||
| byte[] completo = in.readAllBytes(); | |||||
| for(int i =0; i <completo.length;i++) { | |||||
| n = n+completo[i]; | |||||
| } | |||||
| for(int i =0; i <completo.length;i++) { | |||||
| Thread.sleep(200); | |||||
| out.write(completo[i]); | |||||
| System.out.print("-"); | |||||
| } | |||||
| System.out.print ("]"); | |||||
| in.close(); | |||||
| out.close(); | |||||
| System.out.print ("\nSe han copiado "+completo.length+" caracteres\n"); | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,2 @@ | |||||
| module myCopy { | |||||
| } | |||||