[Solved] Java, the clipboard code does not work, [closed]
[ad_1] You’re not checking clipboardContent for null. Just change: if (clipboardContent.length() == 5) {…} to: if (clipboardContent != null && clipboardContent.length() == 5) {…} [ad_2] solved Java, the clipboard code does not work, [closed]