You cannot 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
Java

3 years ago
package sh.adb.sensorCommunityAPI;
import org.json.simple.parser.ParseException;
import java.io.IOException;
3 years ago
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();
3 years ago
}
}