본문 바로가기
Backend/JAVA

JAVA 에서 클립보드에 텍스트 복사하는 방법

by 지구 2018. 7. 25.

주소를 클립보드에 복사하고 싶을 땐, 아래 코드를 활용하면 된다.



1
2
3
4
5
6
7
8
9
10
11
import java.awt.datatransfer.*;
import java.awt.Toolkit;
 
private void /* Action performed when the copy to clipboard button is clicked */ {
    String ctc = txtCommand.getText().toString();
    StringSelection stringSelection = new StringSelection(ctc);
    Clipboard clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard();
    clpbrd.setContents(stringSelection, null);
}
 
// txtCommand is the variable of a text box
cs



참고사이트 : https://code.i-harness.com/ko/q/66644e

반응형

댓글