You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
338 B

package sh.adb.sensorCommunityAPI;
import org.json.simple.parser.ParseException;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException, ParseException {
APIPaser api = new APIPaser("https://data.sensor.community/airrohr/v1/sensor/35943/");
api.getJSON();
}
}