본문 바로가기

Programming123

Java jdom sample Sample XML12345678910111213 127.0.0.1 8080 127.0.0.2 8080 Java Code1234567891011121314151617181920212223242526272829303132333435363738394041424344454647import org.jdom.*;import org.jdom.output.Format;import org.jdom.output.XMLOutputter; class test{ public static final String SERVER_INFO_ELE = "serverinfo"; public static final String SERVER_ELE = "server"; public static final String ID_ATTR = "id.. 2013. 6. 3.
Frequently used(referred) Python code 개인적으로 자주 쓰거나 참조하는 Python Code 를 정리해 보았다.Fileread lines with line separator1234fpin = open(inputFile) for fline in fpin: print 'line text with newline : ', fline read lines without line separator12345fpin = open(inputFile)flines = fpin.splitlines() for fline in fpin: print 'line text without newline : ', flineFile path concatenation123456outDir = 'testDir'outUserName = 'test1'outFile = 'testFile... 2013. 5. 24.
Java sample code of random string generator 정된 문자들로 조합된 무작위 문자열을 만드는 예제 코드이다. (import 부분은 생략되었음)아래의 예제는 50000 유저에 대해 랜덤한 케릭터로 구성된 아이디를 발급하는 부분이다. 길이는 5 ~ 20자 내에서 랜덤하게 생성된다.1234567891011121314151617String userIdListStr = "";int USER_NUM = 50000; char[] chars = "abcdefghisklmnopqrstuvwxyz1234567890_".toCharArray();Random random = new Random();for(int i = 0; i 2013. 5. 15.
JSP Sample code of Http Post 개발시 임시로 사용했던 http post sample page 내용을 공유해본다.아래의 예제에서 쓰이는 Post variable은 pk, title 그리고content 이다.123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 Email Search Test Page Http request Result 2013. 5. 15.