Alguien me podria ayudar ? , Copio el metodo aqui :
El codigo creo que no tiene fallos, coje perfectamente la web ....
Código PHP:
public static boolean CojeCodigoEjemplo(String link) throws IOException{
String direccion="http://www.java2s.com"+link;
//RECOJO CONTENIDO DE LA URL
URL url = new URL(direccion);
HttpURLConnection com= (HttpURLConnection) url.openConnection();
com.connect();
BufferedReader in =new BufferedReader(new InputStreamReader(com.getInputStream()));
//AÑADO CONTENIDO DEL HTML AL html
String html="";
String linea;
while((linea = in.readLine()) != null) {
html +=linea;
}
//CATEGORIA
String patron= "<code> * <//code>";
//METER EN PARTNER
Pattern p = Pattern.compile(patron);
Matcher matcher = p.matcher(html);
if (matcher.find()){
System.out.println(matcher.group());
}
while (matcher.find()){
System.out.printf("Encontrado %s en %d \n");
System.out.println( matcher.group()+ matcher.start());;
System.out.println("--> Esta entre " +matcher.start()+" i "+matcher.end());
//INSERTA EN LISTA
System.out.println(matcher.group(1)+matcher.group(2));
}
return true;
}