목록Programming/[Java] (76)
른록노트
@ 방법 JSONArray jarr; (안에 여러가지 데이터가 있음) JSONObject jval = null; for (int i = 0; i JSONArray안에 있는 JSONObject를 객체에 담아(위치름 참조) 그 객체를 수정해주면 JSONArray 은 그 위치를 보고있어서 수정이 가능함
@ 코드 String data = "{ ... }"; Object json = new JSONTokener(data).nextValue(); if (json instanceof JSONObject) //you have an object else if (json instanceof JSONArray) 참고사이트 https://code-examples.net/ko/q/5d5d34
@ 설명1. 드라이버 로딩Class.forName("oracle.jdbc.driver.OracleDriver"); //oracle, mysql 등 DB 드라이버 설정2. DB 연결Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:ORA92","scott","tiger");//Connection을 사용하기 위해서는 java.sql.Connection을 임포트 해야함//conn이라는 커넥션을 만든 후 DriverManager의 getConnection을 통해 DB를 연결해줌//DriverManager를 사용하려면 java.sql.DriverManager를 임포트 해줘야함//첫 매개변수는 DB url이다, jdbc:o..
참고사이트https://stackoverflow.com/questions/17422480/maximum-size-of-a-method-in-java-7-and-8
코딩문제 사이트https://www.acmicpc.net
@ Stream이란? 컴퓨터상에서 입출력 시 전달되는 데이터 @ Reader/Writer란? Reader는 stream을 읽는 객체 Writer는 stream을 만드는 개체 Buffer와 같이 사용 @ Buffered란? Buffer는 메모리를 뜻하고 메모리를 사용해서 읽어야할 대상과 만들어야할 대상의 속도 차이(병목현상)을 줄일 수 있어 Reader와 Writer를 도와주는 객체 참고사이트 http://dodocap.tistory.com/entry/JAVA%EC%9D%98-%EC%9E%85%EC%B6%9C%EB%A0%A5-%EA%B8%B0%EB%B3%B8%EA%B0%9C%EB%85%90-Stream-ReaderWriter-Buffered
1. String aa = String.ValueOf(인트변수);2. String aaa = 인트변수 + ""; (리터럴 방식)
// TO CHECK WHETHER A FILE IS OPENED // OR NOT (not for .txt files) // the file we want to check String fileName = "C:\\Text.xlsx"; File file = new File(fileName); // try to rename the file with the same name File sameFileName = new File(fileName); if(file.renameTo(sameFileName)){ // if the file is renamed System.out.println("file is closed"); }else{ // if the file didnt accept the renaming oper..