vote up 1 vote down star
1

I want to implement drag and drop between two components within the same JVM. I'm passing an array of objects which are not serializable, so I'm trying to find the correct incantation of javaJVMLocalObjectMimeType to pass in. However, I keep getting an illegal argument exception.

As an example, if i have ExampleClass

Appending class parameters works:

	new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType+";class="+ExampleClass.class.getName());

But fails with an array type:

	new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType+";class="+ExampleClass[].class.getName());

which throws:

java.lang.IllegalArgumentException: failed to parse:application/x-java-jvm-local-objectref;class=[LExampleClass

Aargh! Drag&Drop in swing is such a complete mess!

flag

50% accept rate
What's the difference between the two code samples? – mmyers Feb 23 at 18:45
My apologies, that was a copy and paste error. the second example should refer to an array very of ExampleClass. Fixed now... – Joel Carranza Feb 23 at 19:10
Didn't the c&p error got into your code? Can you provide the rest of the "failed to parse..." message? – Oscar Reyes Feb 23 at 19:13
No, it didnt.... new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType+";class="+ExampleClass[].class.getName()); throws java.lang.IllegalArgumentException: failed to parse:application/x-java-jvm-local-objectref;class=[LExampleClass; – Joel Carranza Feb 23 at 19:24

1 Answer

vote up 1 vote down check

Try this:

new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType +
               ";class=\""+ExampleClass.class.getName() + "\"");

Since the name of an array (e.g. "[Ljava.lang.Object;") has special characters, you have to quote the "class" parameter.

link|flag
That was it! Thanks... – Joel Carranza Feb 23 at 21:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.