本文介绍了用Java复制到剪贴板的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将用户的剪贴板设置为Java控制台应用程序中的字符串。有什么想法?
I want to set the user's clipboard to a string in a Java console application. Any ideas?
推荐答案
使用获取。在java.awt.datatransfer中创建,使用字符串
并将其添加到剪贴板
。
Use the Toolkit
to get the system clipboard. Create a StringSelection
with the String
and add it to the Clipboard
.
简化:
StringSelection selection = new StringSelection(theString);
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(selection, selection);
这篇关于用Java复制到剪贴板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!