I'm not sure what you mean by "as closures in Clojure".
Java lambdas capture their scope lexically just like a Clojure function would, so if you define something in Java it's going to capture the surrounding Java scope. I'm not sure what it would mean for Java code to capture a Clojure scope! You can of course call Java code that uses lambdas from Clojure, or even call lambdas directly (although it may be trickier than normal because of the invisible interfaces involved). Could you expand more on what you would like to do, maybe with a code example?
There is also a discussion about
Java 8 lambda interop in Clojure which may be of help to you.