분류 전체보기(222)
-
10주차 - Apache Tomcat 설치 (포터블버전)
DL : https://tomcat.apache.org/ 이클립스에서 window - preference 들어가서 encoding 전부 UTF-8로 변경 java를 검색 - compiler - compiler compliance level - 1.8 변경 installed JREs - Add- Standard VM - Directory -> jdk 설치 경로 (디폴트 경로는 C:\Program Files\Java 아래에 위치) server 검색 - Runtime Enviroments - Add - Apache - 9.0 (설치된 아파치 버전 클릭) - next - Brows - 아파치 톰캣 설치 경로 설정 아래의 서버 탭에서 서버 클릭후 설치된 아파치 버전 선택하여 서버 생성 아래의 빨간줄 3개를 수정하..
2022.09.07 -
6주차 - javaFX ToggleButton
ToggleButton 은 클릭하면 선택상태가 유지되고 다시 클릭했을때 선택이 해제되는 Button을 생성한다. RadioButton처럼 ToggleGroup 을 만들어서 설정할 수 있다. public class ToggleButtonEx1 extends Application{ public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { ToggleButton toggle1 = new ToggleButton("토글1"); ToggleButton toggle2 = new ToggleButton("토글2"); toggle1.setText("토글버튼1..
2022.09.05 -
6주차 - javaFX TextField
TextField는 사용자가 입력가능한 한줄의 필드를 생성한다. public class TextFieldEx01 extends Application{ public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { TextField text1 = new TextField(); TextField text2 = new TextField(); text1.setMaxSize(180, 60); text2.setMaxSize(180, 60); text1.setText("아이디"); text2.setText("이름"); VBox box = new VBox(); ..
2022.09.05 -
6주차 - javaFX TextArea
TextArea는 일반적으로 인터넷에서 게시글을 작성하는 넓은 입력칸을 부른다. TextField는 한줄로 끝이지만 TextArea는 이름처럼 넓은 공간을 가진다. .setWrapText(boolean) 메서드를 이용하면 박스를 넘어갈시 줄을 넘길지도 설정할 수 있다. 아래는 코드 public class TextAreaEx01_02 extends Application{ public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { BorderPane border = new BorderPane(); Label toplb = new Label("TOP..
2022.09.05 -
6주차 - javaFX RadioButton
RadioButton 은 사용자가 체크 가능한 동그란 버튼을 생성한다. CheckBox와 비슷한 기능을 가지지만, CheckBox 는 주로 다중 선택이 가능한 때에 사용이 된다. RadioButton은 선택지중에 하나만 선택 하는 경우에 주로 사용 된다. 반드시는 아니지만 이것이 일반적인 사용 용도가 이러하니, 용도를 바꾸어 사용한다면 사용자에게 혼선을 줄 수 있으므로 주의하자. public class RadioButtonEx01 extends Application{ public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { HBox box =..
2022.09.05 -
6주차 - javaFX PasswordField
PasswordField 는 생성된 필드에 입력한 값을 보여주지 않는 필드이다. public class PasswordFieldEx extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { PasswordField text1 = new PasswordField(); PasswordField text2 = new PasswordField(); text1.setPrefHeight(100); text1.setMaxWidth(200); VBox box = new VBox(); box.getChildren().a..
2022.09.05