분류 전체보기 썸네일형 리스트형 [Java] reading UCS2-little endian file to UTF-16 File f = new File("./test.OC"); InputStreamReader reader = new InputStreamReader(new FileInputStream(f), "UTF-16");BufferedReader in = new BufferedReader(read);String str; while (( str = in.readLine()) != null){String s[] = str.split(",");System.out.println(str);System.out.println(s[0].length());} 이렇게 하면 s[0].length 가 정확히 10이 찍힘. 더보기 [Maven] pom.xml 관련 에러 (transfer to failuere ~... ) 이 에러는 pom.xml 에서 dependency 와 연결이 안될 때 이런 에러가 나온다. dependency 를 주석처리하고 새로 받자. 그럼 잘된다. 더보기 [Java] Entity annotation http://stackoverflow.com/questions/29332907/what-is-the-exact-meaning-of-the-jpa-entity-annotation 참조 클래스가 table 과 맵핑된다? 어디서 사용하는거지? 더보기 [Maven] src/test/java 실행 시 기본 클래스를 찾을 수 없습니다 http://jgh6371.tistory.com/98 참조 핵심은 user-entry 에 classes, test-classes 추가 메이븐은 클래스 파일이 target/classes 에 만들어져야한다. 이 설정은 project -> properties -> Java Build Path -> 밑에 Default output folder 가 SimpleCrawler/target/classes 로 설정되야함. 더보기 [Maven] maven test 시 외부 라이브러리 추가하는 방법 이 classpathElements 는 왜 폴더채로 안먹히지? 하나하나씩 일일이 다 지정해줘야 하네... org.apache.maven.pluginsmaven-surefire-plugin2.19.1 true falsefalse./lib/zjsonpatch-0.2.1.jar 더보기 [Notepad] 정규표현식 http://honsal.tistory.com/entry/Regexp-2015-08-19 참고 더보기 [Maven] [에러] not supported in -1.5 아래처럼 추가해주면 됨. org.apache.maven.pluginsmaven-compiler-plugin2.41.81.8 더보기 [Maven] test 안하는 옵션 http://lks21c.blogspot.kr/2011/12/how-to-skip-testing-while-maven-build.html 참고 메이븐 빌드 시 테스트 건너뛰기(How to skip testing while the maven build time)방법 #1 : 메이븐 빌드 명령어 추가 1: mvn -Dmaven.test.skip=true 방법 #2 : 메이븐 pom.xml에 추가(maven.test.skip은 예약어입니다.) 1: 2: true 3: 방법 #3 [...] org.apache.maven.plugins maven-surefire-plugin 2.17 true [...] 더보기 [Maven] Maven Dependency jar 특정 폴더에 copy http://opensrc.tistory.com/112 여기 참조 핵심은 그림을 보면 된다. 더보기 unix find 로 용량 합계 FIND 용량 합계 * find . -type f -name "*log" -ls | awk '{ result += $7 } END { print result }' - 타입이 파일이고 파일이름이 *log 로 끝나는 것들의 7번째 항목을 더한 뒤 print result - 1.45885e+10 이 나오는데 이 말은 1.45885 * 10의 10승 = 대략 14GB 더보기 이전 1 ··· 5 6 7 8 9 10 11 ··· 15 다음