프로그램312 [Java] java.text.SimpleDateFormat SimpleDateFormat을 이용하면 현재 날짜 및 시간을 원하는 포맷으로 가져올 수 있다.…Format 기호의미보기G연대(BC, AD)ADy년도2009M월(1~12월 또는 1월~12월)10또는 10월, OCTw년의 몇 번째 주(1~53)50W월의 몇 번째 주(1~5)4D년의 몇 번재 일(1~366)100d월의 몇 번째 일(1~31)15F월의 몇 번째 요일(1~5)1E요일월a오전/오후(AM, PM)PMH시간(0~23) 20k시간(1~24) 12K시간(0~11) 10h시간(1~12) 11m분(0~59) 35s초(0~59) 55S천분의 1초(0~999) 253zTime zone(General time zone) GMT+9:00ZTime zone(RFC 822 time zone) +0900‘excape문자.. 2013. 11. 15. [Java] java.util.ResourceBundle java에서 사용되는 properties 파일의 내용을 읽어올수 있다. ResourceBundle클래스는 국제화를 지원하기 Locale 파일 규칙을 이용해서 파일명을 사용할 수 있다.properties 파일은 getBundle 메소드에 의해 객체로 전환이 된다. 따라서,크랠스 파일과 같이 위치를 추적할 수 있다. 만약 “server.properties” 라는 파일이 classes 폴더 밑에 conf 라는 폴더 아래 있다면 “conf.server.properties” 로 해서 찾을 수 있다.… 위치 : web-inf/classes/conf/server.properties ResourceBundle bundle = ResourceBundle.getBundle(“conf.server.properties”); .. 2013. 11. 15. [Java] properties 파일을 읽어 들이고 저장하기 java.util.Properties 클래스를 사용하면 쉽게 키와 값으로 이루어진 properties 파일을 읽어들이고 작성할 수 있다.…1. properties 파일 작성 Properties prop = new Properties(); prop.setProperty(“SERVER_IP”, “127.0.0.1″); prop.setProperty(“SERVER_PORT”, “5000″); try{ OutputStream stream = new FileOutputStream(“파일명”); prop.store(stream, “Server Info”); stream.close(); } catch(IOException ex){ ex.printStackTrace(); }…2. properties 파일 읽어들이기 P.. 2013. 11. 15. [Java] JDom – SAXBuilder를 이용한 Document 객체 생성 XML 소스(소켓, 파일, 입력, 등)을 입력 받아서 각 항목에 접근하기 위해서는 먼저 Document 객체를 생성해야 한다. 다음은 다양한 입력 소스로 부터 Document 객체를 생성하는 방법이다.…// 바이트배열에 담김 데이터를 이용해서 XML Document 객체를 생성한다. byte[] responseBody = null;if (responseBody != null) { SAXBuilder saxBuilder = new SAXBuilder(); Document doc = saxBuilder.build(new ByteArrayInputStream(new String(responseBody).getBytes())); root = doc.getRootElement(); resultMode = root.. 2013. 11. 15. [Java] JDom – XMLOutputter 를 이용한 Document 객체 출력 작성된 XML Document 객체를 다양한 형태로 출력할 수 있다.… Document doc new Document(); … // Document 객체 작성 … XMLOutputter xo = new XMLOutputter(); // 1) Document 객체를 표준출력으로 보낸다. xo.output(doc, System.out); // 2) Document 객체를 파일로 보낸다. xo.output(doc, new FileOutputStream(“XML파일”)); xo.output(doc, new FileWriter(“XML파일”)); // 3) Document 객체를 소켓 OutputStream 으로 보낸다. os = new DataOutputStream(소켓.getOutputStream()); xo.. 2013. 11. 15. [Java] byte[] -> hex, hex -> byte[] 1. byte[] 을 16진수 스트링으로 변환 byte[] buffer; StringBuffer sb = new StringBuffer( buffer.length * 2 ); String hexaDecimal; for( int x=0;x 2013. 11. 15. [Java] – JDom XML 문서의 주석(Comment)을 다는 방법 XML 문서 작성시, 문서의 맨 앞에 주석을 달고 싶을 때는 Document객체에 Comment 객체를 생성해서 추가해 주면 된다.… Comment comment = new Comment( “xml 문서에 대한 설명” ); doc.getContent().add( 0, comment );…* doc.addContent( comment ) 를 이용해서 주석을 추가하면 문서의 마지막에 추가된다. 2013. 11. 15. 이전 1 ··· 38 39 40 41 42 43 44 45 다음