public static int getVotes()
{
int votes = 0;
try
{
URL url = new URL("https://l2.hopzone.net/lineage2/details/100936/L2Warland");
InputStream is = url.openStream();
try (BufferedReader br = new BufferedReader(new InputStreamReader(is)))
{
String line;
while ((line = br.readLine()) != null)
{
if (line.contains("<span class=\"rank tooltip\" title"))
votes = Integer.valueOf(line.split(">")[2].replace("</span", ""));
}
}
}
catch (IOException e)
{
e.printStackTrace();
}
return votes;
}