Jump to content
  • 0

Question

Posted (edited)

There are new changes in hopzone but I'm unable to fix it, not sure what I do wrong, can anybody help with below code to read the current votes?

 

    protected static int getVotes()
    {
    InputStreamReader isr = null;
    BufferedReader br = null;

    try
    {
    if(!hopzoneUrl.endsWith(".html"))
    hopzoneUrl+=".html";

    URLConnection con = new URL(hopzoneUrl).openConnection();


    con.addRequestProperty("User-Agent", "Mozilla/5.0");
    isr = new InputStreamReader(con.getInputStream());
    br = new BufferedReader(isr);

    String line;
    while ((line = br.readLine()) != null)
    {
        if (line.contains(":server-votes")||line.contains(":server-votes=")||line.contains("server-votes")||line.contains("server-votes=")||line.contains(":server-votes=\""))
    {
    int votes = Integer.valueOf(line.split("\"")[1].split("\"")[0].split("\"")[2]);
    
    
//Hopzone line source code:
//   :server-votes="228"
 

    return votes;
    }
    }

    br.close();
    isr.close();
    }
    catch (Exception e)
    {
    System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
    }
    return -1;
    }

Edited by l2viserion
help tag

4 answers to this question

Recommended Posts

  • 0
Posted (edited)
2 hours ago, l2viserion said:

There are new changes in hopzone but I'm unable to fix it, not sure what I do wrong, can anybody help with below code to read the current votes?

 

    protected static int getVotes()
    {
    InputStreamReader isr = null;
    BufferedReader br = null;

    try
    {
    if(!hopzoneUrl.endsWith(".html"))
    hopzoneUrl+=".html";

    URLConnection con = new URL(hopzoneUrl).openConnection();


    con.addRequestProperty("User-Agent", "Mozilla/5.0");
    isr = new InputStreamReader(con.getInputStream());
    br = new BufferedReader(isr);

    String line;
    while ((line = br.readLine()) != null)
    {
        if (line.contains(":server-votes")||line.contains(":server-votes=")||line.contains("server-votes")||line.contains("server-votes=")||line.contains(":server-votes=\""))
    {
    int votes = Integer.valueOf(line.split("\"")[1].split("\"")[0].split("\"")[2]);
    
    
//Hopzone line source code:
//   :server-votes="228"
 

    return votes;
    }
    }

    br.close();
    isr.close();
    }
    catch (Exception e)
    {
    System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
    }
    return -1;
    }



1. Replace the int votes expression with this:

int votes = Integer.parseInt(line.split("\"")[1]);



2. expand your IF(line.contains(...)) with an additional condition -

|| line.contains("vote-count")



3. Finally, make sure that you exit the loop on the first match, just in case.

 

Edited by Bru7aLMike
  • 0
Posted

New owner from RU/UA I believe, they remove API too from account control panel, is there any other "User-Agent" I can change?

 

I'm sure I did all codes ok, even with OPEN AI generated code is not working, does not read the votes..

 

Any help will be super

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...