Skip to content Skip to sidebar Skip to footer

Unable To Use Zip File System (java 7) In Android-studio (5.0 Lollipop)

I've been trying to replace a file in zip without extracting the zip. I tried using the most efficient answer here: https://stackoverflow.com/a/17504151/3397618 I'll paste the code

Solution 1:

Android has its own implementations of the Java library classes, and it doesn't have full support for everything that's in Oracle's libraries. The java.nio.file.Path class isn't in Android's implementation.

You can see documentation on what's available in Android's nio package at http://developer.android.com/reference/java/nio/package-summary.html

Post a Comment for "Unable To Use Zip File System (java 7) In Android-studio (5.0 Lollipop)"