코딩(59)
-
My batis2
HashMap List list= service.selectAllHashmap(); System.out.println(list); for (HashMap dept : list) { BigDecimal dno = (BigDecimal) dept.get("DEPTNO");//숫자 BigDecimal형태 저장 int deptno= dno.intValue(); String dname= (String) dept.get("DNAME"); String loc=(String) dept.get("LOC"); System.out.println(deptno+"\t"+dname+"\t"+loc); } System.out.println("======================================="); for (Ha..
2023.12.23 -
My Batis
JDBC_MyBatis_Ver_3 import com.dto.Dept; import com.service.OracleMyBatisService; public class OralceMyBatisMain { public static void main(String[] args) { //SqlSession sess = MySqlSessionFactory.getSqlSession(); //System.out.println(sess); OracleMyBatisService service = new OracleMyBatisService(); //int num = service.update(new Dept(99, "영업","서울")); //System.out.println("update 갯수 : "+num); Dept..
2023.12.19 -
JDBC
오라클 데이터베이스 연동을 위한 4가지 정보를 저장 String driver =”oracle.jdbc.drtiver.OracleDriver”; String url =”jdbc:oracle:thin:@localhost:1521:xe”; String userid =”scott”; String passwd =”tiger”; 2. 드라이버 로딩 Class.forName(driver); 3. Connection 맺기 Connection con = DriverManager.getConnection (url, userid, passwd); 4. SQL문 작성 String query = “SELECT deptno, dname, loc form dept”; 또는 String query = “DELETE FROM dept..
2023.12.14 -
자바 IO
1. 자바의 IO 소스/ 목적지/ 입력/ 출력 2. 표준 입출력 System.in 표준 입력으로서 키보드에서 데이터를 읽어 들일 때 사용한다. import java.awt.im.InputContext; import java.io.IOException; import java.io.InputStream; public class IOTest { public static void main(String[] args) { InputStream is = System.in; try { System.out.println("데이터 입력: "); int n = is.read();//1byte System.out.println((char)n); } catch (IOException e) { e.printStackTrace()..
2023.12.14 -
예외처리 와 제네릭컬렉션
9장 예외처리 예외가 발생되었을 때 프로그램을 비정상 종료하지 않고 정상 종료 되게 처리하는 것 System.out.println("프로그램 시작"); try { int num= 10; int result = num/0; System.out.println(result); //ArithmeticException }catch(ArithmeticException e) {//handling 할 ex객체명 System.out.println("예외 발생"); } System.out.println("프로그램 종료"); 2.1 try~catch~finally 문 이용 try{ //예외발생코드 }catch(예외클래스명 변수명){ //예외처리코드 } System.out.println("프로그램 시작"); try { int..
2023.12.11 -
핵심클래스
3. 중첩 클래스 클래스 안에 또 다른 클래스가 정의되는 것 1) member inner 클래스 class Outer{ int a =10; private int b =20; private int c =30; class Inner{ //멤버변수 위치 int d =40; public void print () { System.out.println(a);// outer 멤버변수 사용 System.out.println(b); System.out.println(c); System.out.println(d); }} public void info (){ Inner inner = new Inner (); //이너클래스의 사용 inner .print(); }} public class Ex07_4 { public statu..
2023.12.09