Jump to content

solution

Members
  • Posts

    1
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About solution

Profile Information

  • Gender
    Not Telling
  • Country
    Greece

solution's Achievements

Newbie

Newbie (1/16)

  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. HELLO FRIEND CAN YOU HELP ME WITH NEW RESPONSE ON HOPZONE int votes = -1; try { HttpURLConnection con = (HttpURLConnection) new URL("https://vgw.hopzone.net/lineage2/details/6556/l2damaage").openConnection(); try (BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()))) { //String keyWord = "<span class=\"rank tooltip hidden\" "; String line; while ((line = br.readLine()) != null) { if (line.contains("title=\"Total Votes\">")) { votes = Integer.parseInt(line.split("title=\"Total Votes\">")[1].split("</span>")[0]); //System.out.println(line+"keyword:"+line.split(keyWord)[1].split("</span>")[0]); break; } } } con.disconnect(); } catch (Exception e) { System.out.println("VoteSystem: Error while getting server vote count from " + getSiteName() + "."); }
×
×
  • Create New...