I\'m currently working on Java code that can copy files into the system clipboard.
For Windows and Linux I already got it working. For OSX I tried several flavors bu
Maybe you should try DataFlavor#javaFileListFlavor.
Excerpt from the API documentation:
DataFlavor#javaFileListFlavor (Link)
To transfer a list of files to/from Java (and the underlying platform) a DataFlavor of this type/subtype and representation class of java.util.List is used. Each element of the list is required/guaranteed to be of type java.io.File.