티스토리 뷰
[자바] 경고창, 확인창 띄우기
1. 단순 확인창
JOptionPane.showMessageDialog(frame,
"Eggs are not supposed to be green.");
2. 예, 아니오, 취소 창
//Custom button text
Object[] options = {"Yes, please",
"No, thanks",
"No eggs, no ham!"};
int n = JOptionPane.showOptionDialog(frame,
"Would you like some green eggs to go "
+ "with that ham?",
"A Silly Question",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[2]);
3. 예, 아니오 창
final JOptionPane optionPane = new JOptionPane(
"The only way to close this dialog is by\n"
+ "pressing one of the following buttons.\n"
+ "Do you understand?",
JOptionPane.QUESTION_MESSAGE,
JOptionPane.YES_NO_OPTION);
4. 예, 아니오 창 텍스트 설정하기
Object[] options = {"Yes, please",
"No way!"};
int n = JOptionPane.showOptionDialog(frame,
"Would you like green eggs and ham?",
"A Silly Question",
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE,
null, //do not use a custom Icon
options, //the titles of buttons
options[0]); //default button title
5. 사용자가 옵션을 선택하는 예, 아니오 창
Object[] possibilities = {"ham", "spam", "yam"};
String s = (String)JOptionPane.showInputDialog(
frame,
"Complete the sentence:\n"
+ "\"Green eggs and...\"",
"Customized Dialog",
JOptionPane.PLAIN_MESSAGE,
null,
possibilities,
"ham");
참고 : http://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html
- Total
- Today
- Yesterday
- 탐론 17-50
- TIP
- 삼식이
- 속깊은 자바스크립트 강좌
- 안드로이드 앱 개발 기초
- mini project
- 샷
- 팁
- google app engine
- java
- c++
- K100D
- Android
- GX-10
- lecture
- 뽐뿌
- php
- gre
- 자바스크립트
- Writing
- HTML5
- 강좌
- HTML5 튜토리얼
- 서울
- Javascript
- gae
- 사진
- Python
- ny-school
- 안드로이드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |