일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Drools Fusion
- drools
- JBoss Seam
- GEventEvaluator
- spring transaction
- spring security
- ibatis
- jenkins
- Hudson
- rember me
- maven
- jquery
- gwt
- querydsl
- gwt-ext
- COC
- SVN
- JPA
- @SqlResultSetMapping
- bootstrap jquery datepicker
- Spring
- custom filter
- jquery serialize
- jstl
- zabbix
- spring jpa
- guvnor
- CEP
- MySQL
- java tip
- Today
- Total
목록Python (2)
봉 블로그
아래는 파일내 특정문자열을 변경하는 프로그램이다. 단 10분만에 작성한 프로그램인데, 이걸 자바로 하려면 꽤 번거롭다. file inputstream, outputstream 작성해야 하고.. file 목록 뽑아야 하고 등등.. 이런 작업은 python의 생산성이 월등히 높다. java와 python 을 같이 사용한다면 매우좋을듯.. from os import listdir from os.path import isfile, join import codecs def replaceInFile(file_path, old, newstr): f = codecs.open(file_path, 'r', encoding='utf8') read_file = f.read() f.close() new_file = codecs..
# script 파일을 업로드하고 mode 변경후 실행하기 (fabric 사용) put(open(mainDir + '/commands.txt'), 'commands.sh', mode=0755) result = run('./commands.sh', pty=False, combine_stderr=True) # json 파일 pretty print python -m json.tool ./core/spidercore/vms.json logger.debug(json.dumps(nics, indent=4)) #파일 앞뒤 2줄씩 삭제하고 리턴 list = file_contents.split('\n') return "\n".join(list[2: len(list)-2]) #good logging practice in ..