Skip to content

Instantly share code, notes, and snippets.

@florinbarbisch
florinbarbisch / AerialScreensaverDownloader.java
Created April 10, 2020 18:07
A java downloader for all AppleTV Wallpapers (according to https://aerial-screensavers.netlify.com/). With the ability to resume the download if it gets interupted/stopped (just rerun the program). Using java.nio and parallel streams (for the flex).
import java.io.File;
import java.io.FileOutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.channels.Channels;
import java.util.regex.MatchResult;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
public class AerialScreensaverDownloader {