Using literally exactly the same code as on the GitHub tutorial, I get a ZipException whenever I try to call a method with client.files().
DbxRequestConfig config = DbxRequestConfig.newBuilder("Greysia Bot").build();
DbxClientV2 client = new DbxClientV2(config, ACCESS_TOKEN);
ListFolderResult result = client.files().listFolder("");[01:48:22] [Thread-37/WARN]: Caused by: java.lang.RuntimeException: Error loading from "/com/dropbox/core/trusted-certs.raw": invalid stored block lengths
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.util.LangUtil.mkAssert(LangUtil.java:15)
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.http.SSLConfig.loadKeyStore(SSLConfig.java:347)
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.http.SSLConfig.createTrustManager(SSLConfig.java:214)
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.http.SSLConfig.<clinit>(SSLConfig.java:60)
[01:48:22] [Thread-37/WARN]: ... 12 more
[01:48:22] [Thread-37/WARN]: Caused by: java.util.zip.ZipException: invalid stored block lengths
[01:48:22] [Thread-37/WARN]: at java.util.zip.InflaterInputStream.read(Unknown Source)
[01:48:22] [Thread-37/WARN]: at java.util.zip.InflaterInputStream.read(Unknown Source)
[01:48:22] [Thread-37/WARN]: at java.io.FilterInputStream.read(Unknown Source)
[01:48:22] [Thread-37/WARN]: at java.io.DataInputStream.readUnsignedShort(Unknown Source)
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.http.SSLConfig.deserializeCertificates(SSLConfig.java:396)
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.http.SSLConfig.loadKeyStore(SSLConfig.java:375)
[01:48:22] [Thread-37/WARN]: at com.dropbox.core.http.SSLConfig.loadKeyStore(SSLConfig.java:341)
[01:48:22] [Thread-37/WARN]: ... 14 more