Medir tiempo de ejecución de un método en java


public static void main(String[] args)
{
long tiempoInicio = System.currentTimeMillis();
ejecutarProceso(); // aqui se llama al método al cual se le quiere calcular el tiempo de ejecución
long totalTiempo = System.currentTimeMillis() - tiempoInicio;
System.out.println("El tiempo del proceso total es :" + totalTiempo + " miliseg");
}

By Miguel Ruiz on miércoles, 15 de diciembre de 2010 | | A comment?

Obtener contenido de una web por java

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;


public class Test {
public static void main(String[] args) throws Exception {
URL u = new URL("https://forja.rediris.es/");
URLConnection conn = u.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(
conn.getInputStream()));
String inputLine;

while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
}

By Miguel Ruiz on martes, 14 de diciembre de 2010 | | A comment?