IT 썸네일형 리스트형 JAVA 특수문자 split lf (data.contains("+")) String tmp[] = data.split("+") 에러내용 : Dangling meta character '+' near index 0split("+")부분에서 컴파일러가 + 부분을 인식 못함.해결: String tmp[] = data.split("[+]")로 변경.아니면 특수문자 앞에 \\쓸것. (예 data.split("\\+"))String연산 함수(예:replaceAll()..) 이용시 주의할것. 참고 http://blog.naver.com/kim22922/80097490823자바의 특수문자와 그 기능 \n u000A new line \t u0009 tab \r u000D return \f u000C form feed \\ u005C backsals.. 더보기 JSON JSON(JavaScript Object Notation) XML은 JSON보다 무겁고 JSON은 경량화 되어 있다.JSON은 XML보다 적은 용량으로 데이터를 교환할 수 있다.JSON은 데이터 타입을 갖고 XML은 모두 String형 이다. JSON에서 가장 많이 쓰는 json-simple library를 다운받아야 사용이 가능하다.https://code.google.com/p/json-simple/ 다운로드후 해당 프로젝트에 복사를 해주고 add to build path해준다.JSON은 순서없이 관리를 하는 set구조를 가지고 있다. Colored By Color Scripter™123456789101112131415161718import org.json.simple.JSONObject; public.. 더보기 XML 특수문자 파싱 Escape 문자& : & : > ' : ' " : " public String parsingSpecialforXml(String fileName) {CharBuffer cb = CharBuffer.wrap(fileName);String xmlString = "";while (cb.hasRemaining()) {char tempChar = cb.get();if (tempChar == '"') {xmlString += """;} else if (tempChar == '&') {xmlString += "&";} else if (tempChar == '\'') {xmlString += "'";} else if (tempChar == '') {xmlString += ">".. 더보기 tomcat timeout 에러 항상 이클립스에서 간단한 것들만 돌려봤더니 서버실행시(Run On Server) Timeout 오류를 처음 겪어 봤습니다. 사실 서버설정에 이런 내용이 있는줄도 모르고 있었군요. ㅠ..ㅠ (여기서는 Tomcat 6.0버전을 사용했습니다.) "Starting Tomcat v6.0 Server at localhost' has encountered a problem. Server Tomcat v6.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor. 위와 같은 오류가 나타납니다. 45초내에 서버시작을 못했다고.. 더보기 [Oracle] sqldeveloper로 특수문자 입력 sqldeveloper로 데이터를 입력할때 특수문자 특히 &기호를 substitution variable로 인식하여 정상적인 값이 들어가지 않은 적이 있다.이는 select나 다른 쿼리들도 마찬가지로 예를 들어SQL > INSERT INTO "TABLE_NAME" ("COLUNM_NAME") VALUES ('test&value');이를 커밋하면 다음과 같은 창이 뜨는데 이를 해결하기위한 방법은 다음과 같다. 1. substitution variable 기능을 OFF시킨다. 1) SQL > SET DEFINE OFF;2) SQL > SET SCAN OFF; 2. substitution variable 기능을 사용해야 할 경우 &대신 다른문자로 지정한다.SQL > SET DEFINE @ -- '&' 대신 '.. 더보기 이전 1 ··· 13 14 15 16 17 18 19 ··· 25 다음