The following code from a standalone application works in ubuntu:
import java.awt.Toolkit;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.StringSelection;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.io.IOException;
public class ClipboardTest {
public static void main(String[] args) throws Exception {
Clipboard clipBoard = Toolkit.getDefaultToolkit().getSystemClipboard();
// print the last copied thing
System.out.println(clipBoard.getContents(null).getTransferData(DataFlavor.stringFlavor));
StringSelection data = new StringSelection("NOW");
clipBoard.setContents(data, data);
// prints NOW
System.out.println(clipBoard.getContents(null).getTransferData(DataFlavor.stringFlavor));
}
}
Pasting (Ctrl+V) into a different application results in nothing; I expect "NOW". Calling the above code a second time gives the following exception:
Exception in thread "main" java.awt.datatransfer.UnsupportedFlavorException: Unicode String
at sun.awt.datatransfer.ClipboardTransferable.getTransferData(ClipboardTransferable.java:160)
As a standalone application, this should work even after 2011 security changes. Copying via Ctrl+C from inside of a JTextField and then pasting elsewhere works.
Have been unsuccessful on ubuntu 11.04 with both the latest java7 (jdk1.7.0_10) and jdk1.6.0_33; It should work and does work as expected on windows 7 with the latest java7 and on mac osx 10.6 with java6_37. Also tried xubuntu 12.04 with those javas and it doesn't work there. Is this a linux/ubuntu bug?
I got the same problem with the application at my work and here's an article I've found that explain why and possible solutions. I hope it helps.
Why it happens
X-Window wiki
Using gnome library you could call the store method on the clipboard and fix this. That's the only thing so far that seems to be worth trying. Also saw a similar thing for GTK but only in an Eclipse's bug.
I tried your code with debian testing (7.0) and openjdk 7u3. The result is the same, but i think i found the Problem (Solution).
Content in the clipboard is only valid as long as the process exists. It works if i change your code to this:
The if statement prevent your code from throwing an exception when there is no usable content, which happens if you run your code once and the process ends.
The System.in.read() just keeps the process alive. While not press enter i can paste into another application and "NOW" comes out as expected.
Like this the code works every time for me.
Hope this helps.
Q: Have you tried something like this:
gksudo gedit /opt/java/64/jre1.7.0_04/lib/security/java.policy
=>permission java.awt.AWTPermission "accessClipboard";
See also:
Copy/Paste not working in a signed Applet
Any workaround to getting Copy/Paste working in JDK 7 AWT Applet on Mac?
http://www.sqlinform.com/forum4/read.php?3,467
Here you can show a test:
A TextArea (its default copy/paste actions works out of the box with any other app on ubuntu)
I have added two buttons which copy and paste from/to system clipboard
I think you must take care of:
And see there is a DataFlavor.plainTextFlavor which maybe is what you need to use (although it is deprecated)
I have tested the code through java 1.4 to java 1.6 on Ubuntu 12.10, but the code where I extract it is in use since ubuntu 9.0 I recall.