Jump to content

solution

Members
  • Posts

    1
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by solution

  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...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..