본문 바로가기
반응형

자바101

자바 소스코드: 텍스트 필드 예제 package javaapplication34; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class TextFieldEx extends JFrame{ TextFieldEx(){ this.setTitle("텍스트필드 예제"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setLayout(new FlowLayout()); JLabel la=new JLabel("학과"); JLabel la1=new JLabel("성명"); JLabel la2=new JLabel("전화번호"); JTextField te=new JTextFie.. 2016. 10. 28.
자바 소스코드: 라디오 버튼 이벤트처리로 이미지 띄우기 package javaapplication33; import java.awt.*; import java.awt.event.*; import javax.swing.event.*; import javax.swing.*; class RadioEvent extends JFrame{ JRadioButton[] r=new JRadioButton[3]; String[] names={"사과", "배", "체리"}; ImageIcon[] i={ new ImageIcon("apple.jpg"), new ImageIcon("pear.jpg"), new ImageIcon("cherry.jpg") }; JLabel la=new JLabel(); RadioEvent(){ this.setTitle("라디오버튼 이벤트처리"); th.. 2016. 10. 28.
자바 소스코드: 라디오 버튼 예제 package javaapplication32; import java.awt.*; import java.awt.event.*; import javax.swing.event.*; import javax.swing.*; class RadioEx extends JFrame{ JRadioButton[] rb=new JRadioButton[3]; String[] names={"사과", "배", "체리"}; RadioEx(){ this.setTitle("라디오버튼 생성"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setLayout(new FlowLayout()); ButtonGroup group=new ButtonGroup(); for(int i=0; i 2016. 10. 28.
자바 소스코드: 체크박스를 이용한 계산 프로그램 package javaapplication31; import java.awt.*; import java.awt.event.*; import javax.swing.event.*; import javax.swing.*; class Check extends JFrame{ JLabel b; JCheckBox[] c=new JCheckBox[3]; String[] names={"사과", "배", "체리"}; int sum; Check(){ this.setTitle("사과 배 체리 계산"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setLayout(new FlowLayout()); JLabel a =new JLabel("사과:100원, 배 500원, .. 2016. 10. 28.
반응형