如何使用系统剪贴板从 java 进行粘贴?
我想用java从系统剪贴板进行粘贴。我该怎么做?
I want to make a paste from the system clipboard in java. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想用java从系统剪贴板进行粘贴。我该怎么做?
I want to make a paste from the system clipboard in java. How would I do this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
虽然机器人类可以工作,但它不如直接使用系统剪贴板那么优雅,如下所示:
While the robot class would work, it's not as elegant as using the system clipboard directly, like this:
你可以像这样使用机器人类
You could use the robot class like this
试试这个
Try this
您也可以尝试使用 Clipboard 类。
You could also try using the Clipboard class.
你必须使用Java图形库,例如。看一下 http://download .oracle.com/javase/1,5.0/docs/api/java/awt/datatransfer/Clipboard.html
You have to use Java graphics library, eg. take a look at http://download.oracle.com/javase/1,5.0/docs/api/java/awt/datatransfer/Clipboard.html
您可以如下使用Clipboard 类来实现粘贴:
系统剪贴板中的内容位于result 字符串变量中。
解决方案来自:http://www.javapractices.com/topic/TopicAction。做什么?id=82
You can use the Clipboard class as follows to achieve the paste:
The content from the system clipboard is found in the result string variable.
Solution coming from: http://www.javapractices.com/topic/TopicAction.do?Id=82