我想同时将图像和文本一起复制到剪贴板 但我可以复制图像或文字
//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);
答案 0 :(得分:0)
您需要使用自定义的Transferable对象:
http://www.coderanch.com/t/345580/GUI/java/Cut-copying-pasting-custom-object