Jump to content

solution

Members
  • Posts

    1
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

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

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock