java(13)
-
java hashtag using
public static String hashtagRegex = "^#\\w+|\\s#\\w+"; public static Pattern hashtagPattern = Pattern.compile(hashtagRegex); public static String urlRegex = "http+://[\\S]+|https+://[\\S]+"; public static Pattern urlPattern = Pattern.compile(urlRegex); public static String mentionRegex = "^@\\w+|\\s@\\w+"; public static Pattern mentionPattern = Pattern.compile(mentionRegex); public static String..
2019.07.31 -
eclipse coding style
팀원님들이 이클립스로 개발을 시작한다면 다함께 이하와 같이 설정을 하고 시작하자, 제발요 * 체크 외에 나머진 체크해제■ Windows -> Prefrences > Java > Editor > Save Actions √ Perform the selected actions on save √ Organize imports √ Additional actions ■ Configure 클릭 ▶ Code Organizing 탭 √ Remove trailing whitespace √ Correct identation ▶ Code Style 탭 √ Use blocks in if/while/for/do statements (단일 if 문에 강제 block 생성) √ Use modifier 'final' where pos..
2018.10.01 -
java zip
출처 1 : http://trypsr.tistory.com/54 출처 2 : http://yeon97.egloos.com/viewer/1551569 import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import java.util.zip.ZipOutputStream; import org.apache.commons.io.FileUtils; import org..
2014.07.04 -
Serv-U 14버전 이상의 로그 분석
Serv-U가 매니지먼트 콘솔화면으로 버전 업 후 Log 형식이 바뀌면서 "sustat" 라는 분석툴이 무용지물이 된 후 답답한 마음에 제작하여 보았습니다. 허접하지만 소스를 공개 합니다. 관심 있는 분들은 둘러봐 주세요 Serv-u 로그 분석툴 구분 설 명 동작방식 java(log파일 분석) + native java(하드디스크 용량 파악) 분석기능 01. 업로드 순위 (+ 상세리스트) 02. 다운로드 순위 (+ 상세리스트) 03. 인기파일 순위 (+ 상세리스트) 04. 드라이브 별 용량 체크 05. 블랙리스트 IP export 및 import 형식으로 추출(회원, 비회원 구분) 특이사항 클론이나 윈도우 스케줄러를 통한 단독 실행 (s.bat) (s_year.bat)은 스케줄러에 등록하지 않음 12월 한..
2014.06.09 -
java gc option
구글검색 https://www.google.co.kr/#newwindow=1&q=java%20gc%20option Java Out Of Memory 오류와 메모리 구조 dryang.egloos.com/4005363 Java로 소프트웨어를 개발하는 사람이라면 누구나 한번쯤 Out Of Memory Error(이하 OOME)를 만나 보았을 것이다. OOME의 경우 Java의 다른 Error와 다르게 원인과 대응을 하기가 쉽지는 않다. 경험에 비추어 보면 OOME가 발생하는 시점은 대부분 개발이 대부분 완료된 후 사용자 테스트 혹은 인수 테스트단계에서 많이 발생한다. 즉 개발 단계에서 수행하는 단위 테스트의 경우 목적 기능에 대한 검증 위주로 진행 되기 때문에 식별이 어렵고 가동 초기 단계 혹은 이와 유사한 ..
2014.03.19 -
java & javascript 요일 구하기
java public String getWeekDay(String day) { Calendar cal = Calendar.getInstance(); cal.set(Calendar.YEAR, Integer.parseInt(day.substring(0,4))); cal.set(Calendar.MONTH, Integer.parseInt(day.substring(4,6)) -1); cal.set(Calendar.DATE, Integer.parseInt(day.substring(6,8))); String[] dayOfWeek = {"일","월","화","수","목","금","토"}; String weekday = dayOfWeek[cal.get(Calendar.DAY_OF_WEEK)-1]; return weekd..
2013.03.11