1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
357 views
by brandon-w-8204 (34.1k points)
"Caused by: org.mozilla.javascript.EcmaError: TypeError: Cannot find function setCreationTime in object"

1 Answer

0 votes

The setCreationPath is part of the "java.util.zip.ZipEntry" java class and is included in java. The setCreationPath was added in Java 8 and above. The error indicates that you are on Java 7 or below. Here is the Java Docs on the Zipentry.

Java 8
https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html

Java 7​​​​​​​
​​​​​​​https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipEntry.html

by brandon-w-8204 (34.1k points)
...