into-array can do that for you:
user=> (doc into-array)
-------------------------
clojure.core/into-array
([aseq] [type aseq])
Returns an array with components set to the values in aseq. The
array's
component type is type if provided, or the type of the first value
in
aseq if present, or Object. All values in aseq must be compatible
with
the component type. Class objects for the primitive types can be
obtained
using, e.g., Integer/TYPE.
nil
user=> (into-array String [])
#<String[] [Ljava.lang.String;@51c888d9>