LucasRoot 2 Denunciar post Postado Abril 1, 2014 Preciso pegar texto de outro site, para orientar a pergunta veja esse código fictício que criei: if (text = http://www.site.com/site.txt) == "on" {return true;} else {return false;} Obrigado. Compartilhar este post Link para o post Compartilhar em outros sites
FreitasMT 29 Denunciar post Postado Abril 2, 2014 Você deve usar a Biblioteca nativa java.net.URL URL url = new URL("http://forum.imasters.com.br/"); BufferedReader reader = null; try { reader = new BufferedReader(new InputStreamReader(url.openStream(), "UTF-8")); for (String line; (line = reader.readLine()) != null;) { System.out.println(line); } } finally { if (reader != null) try { reader.close(); } catch (IOException ignore) {} } Compartilhar este post Link para o post Compartilhar em outros sites