0
我想複製圖片和文字一起在同一時間 到剪貼板,但我可以複製的圖像或文字如何使用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);