Reborn12 Posted December 11, 2016 Posted December 11, 2016 (edited) Not all only the lines replace yours with this is just the same String line; while ((line = in.readLine()) != null) { if (line.contains("Total Votes") ) { String inputLine = line.split(">")[2].replace("</span", ""); votes = Integer.parseInt(inputLine); break; Edited December 11, 2016 by Reborn12
Reborn12 Posted December 11, 2016 Posted December 11, 2016 Send me here or in pastebin the method pls
Detroitas Posted December 11, 2016 Posted December 11, 2016 http://pastebin.com/0w8muvzF - Hopzone.java
Reborn12 Posted December 11, 2016 Posted December 11, 2016 @Override public int getVotes() { int votes = -1; try { final URL obj = new URL(Config.VOTES_SITE_HOPZONE_URL); final HttpURLConnection con = (HttpURLConnection) obj.openConnection(); con.addRequestProperty("User-Agent", "L2Hopzone"); con.setConnectTimeout(5000); final int responseCode = con.getResponseCode(); if (responseCode == 200) { try (BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()))) { String line; while ((line = in.readLine()) != null) { if (line.contains("Total Votes") ) { String inputLine = line.split(">")[2].replace("</span", ""); votes = Integer.parseInt(inputLine); break; } } } } } catch (Exception e) { e.printStackTrace(); System.out.println("Error while getting server vote count from "+getSiteName()+"."); } return votes; }
An4rchy Posted December 11, 2016 Author Posted December 11, 2016 Since hopzone has an API to get the total votes you should use that. I used the old way in this vote system by reading the votes from the server information page.
Detroitas Posted December 11, 2016 Posted December 11, 2016 Import it.. what do you mean? Sorry for a lot of questions, i'm really new on it..
Reborn12 Posted December 11, 2016 Posted December 11, 2016 Simpy let your mouse cursor on it and eclipse will give you some choices select to import this
Detroitas Posted December 11, 2016 Posted December 11, 2016 Click on first now ok with code, i will check it later then i fix tvt problems.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now