just wondering-- could you release the source for beatmap url formatter and the osudistancechecker as well? Just curious P:
also --
This would allow you to read the page source for your beatmap url formatter therefore speeding up the process :3
also --
This would allow you to read the page source for your beatmap url formatter therefore speeding up the process :3
package javaapplication4;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
/**
*
* @author Alex
*/
public class WebRetrieve {
public static void main(String[] args) {
try {
URL url = new URL("http://osu.ppy.sh/p/beatmaplist");
BufferedReader br = new BufferedReader(new InputStreamReader(url.openConnection().getInputStream()));
String thisline = "";
while((thisline = br.readLine()) != null) {
System.out.println(thisline);
}
br.close();
} catch (Exception ex) {
System.err.println(ex);
}
}
}