java.lang.Object
imagingbook.common.util.Clipboard
Clipboard-related methods from
http://examples.javacodegeeks.com/desktop-java/awt/datatransfer/getting-and-setting-text-on-the-system-clipboard/
- Version:
- 2022/11/20
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Writes a string to the system clipboard.static String
If a string is on the system clipboard, this method returns it; otherwise it returns null.
-
Method Details
-
copyStringToClipboard
Writes a string to the system clipboard.- Parameters:
str
- some string
-
getStringFromClipboard
If a string is on the system clipboard, this method returns it; otherwise it returns null.- Returns:
- the clipboard string or null
-