如何使用Java将图像和文本复制到剪贴板?

时间:2011-05-22 22:17:00

标签: java

我想同时将图像和文本一起复制到剪贴板 但我可以复制图像或文字

//class to copy text
    StringSelection selection=new StringSelection(text);

 c.setContents(selection, null);
//class to copy image
                   ImageTransferable s=new ImageTransferable(image);


                       c.setContents(s, null);

1 个答案:

答案 0 :(得分:0)

您需要使用自定义的Transferable对象:

http://www.coderanch.com/t/345580/GUI/java/Cut-copying-pasting-custom-object