Browse Source

changes

master
michaelpaliz 2 years ago
commit
8bc22fbd28
14 changed files with 136 additions and 0 deletions
  1. +10
    -0
      .classpath
  2. +17
    -0
      .project
  3. +2
    -0
      .settings/org.eclipse.core.resources.prefs
  4. +14
    -0
      .settings/org.eclipse.jdt.core.prefs
  5. +1
    -0
      README.md
  6. BIN
      bin/Ejercicio6/Ejercicio6.class
  7. +1
    -0
      bin/Ejercicio6/destino
  8. +1
    -0
      bin/Ejercicio6/origen
  9. BIN
      bin/module-info.class
  10. BIN
      src/Ejercicio6/Ejercicio6.class
  11. +79
    -0
      src/Ejercicio6/Ejercicio6.java
  12. +1
    -0
      src/Ejercicio6/destino
  13. +1
    -0
      src/Ejercicio6/origen
  14. +9
    -0
      src/module-info.java

+ 10
- 0
.classpath View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 17
- 0
.project View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Ejercicio_6</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>

+ 2
- 0
.settings/org.eclipse.core.resources.prefs View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

+ 14
- 0
.settings/org.eclipse.jdt.core.prefs View File

@ -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

+ 1
- 0
README.md View File

@ -0,0 +1 @@
asdf a

BIN
bin/Ejercicio6/Ejercicio6.class View File


+ 1
- 0
bin/Ejercicio6/destino View File

@ -0,0 +1 @@
que masInterruptedException

+ 1
- 0
bin/Ejercicio6/origen View File

@ -0,0 +1 @@
que masInterruptedException

BIN
bin/module-info.class View File


BIN
src/Ejercicio6/Ejercicio6.class View File


+ 79
- 0
src/Ejercicio6/Ejercicio6.java View File

@ -0,0 +1,79 @@
package Ejercicio6;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.util.Scanner;
public class Ejercicio6 {
// Crea un programa Java MiCopy que copie un archivo. Por ejemplo MiCopy
// FicheroOrigen.dat FicheroDestino.dat.
// El programa tendrá que mostrar por pantalla el tanto por cien que lleva
// realizada de la copia y deberá también mostrar algún tipo de animación
// (similar a wget).
// Cuando termine la copia se mostrará un mensaje de fin de la copia.
private static String formatter ="\033[H\033[2J | Descarga %2.2f%% %1s %s | \n";
private static Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
System.out.println("Introduce la ruta de origen");
String origen = sc.nextLine();
System.out.println("Introduce la ruta de destino");
String destino = sc.nextLine();
copiar(origen, destino);
}
public static void copiar(String origen, String destino) {
File sourceFile = new File(origen);
File destinationFile = new File(destino);
try (
FileInputStream inputStream = new FileInputStream(sourceFile);
FileOutputStream outputStream = new FileOutputStream(destinationFile)) {
long lenOfFile = sourceFile.length();
long currentBytesWritten = 0;
int data;
StringBuilder sb = new StringBuilder();
while ((data = inputStream.read()) != -1) {
outputStream.write(data);
String symbol = "*";
currentBytesWritten += 1;
for (int i = 0; i <= 1; i++) {
for (int j = 0; j <= i; j++) {
sb.append(symbol);
System.out.printf(formatter, 100 * ((double) currentBytesWritten) / ((double) lenOfFile), " ", sb.append(sb.charAt(j)));
}
Thread.sleep(40);
System.out.flush();
}
System.out.println("Copia completada exitosamente!");
}
} catch (InterruptedException | IOException io) {
io.printStackTrace();
}
}
}

+ 1
- 0
src/Ejercicio6/destino View File

@ -0,0 +1 @@
que masInterruptedException

+ 1
- 0
src/Ejercicio6/origen View File

@ -0,0 +1 @@
que masInterruptedException

+ 9
- 0
src/module-info.java View File

@ -0,0 +1,9 @@
/**
*
*/
/**
* @author michael
*
*/
module Ejercicio_6 {
}

Loading…
Cancel
Save