Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void Connect(){
- try {
- URL url = new URL(вставить сайт);
- Scanner scn = new Scanner(url.openStream());
- while(scn.hasNextLine()){
- s = scn.nextLine();
- }
- } catch (MalformedURLException e) {
- e.printStackTrace();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement