/ Published in: Java

Java Read Site Source code Line by Line :D
Expand |
Embed | Plain Text
import java.net.*; import java.io.*; class ... static URL url; static URLConnection urlc; static BufferedReader br; static String line; try { urlc = url.openConnection(); while((line = br.readLine()) != null) { } }
You need to login to post a comment.