XMLBeans를 이용한 xml binding ▶ XMLBeans 이름을 보면 그대로 전해지는 느낌이 어떠한가? XML? Beans? "흠~ XML과 Bean이라... XML-->Bean?" 이라고 생각하면 대충은 때려맞춘것이라고 본다. 이글을 읽는 당신은 jakarta-commons의 digester를 보았고 코딩을 해보았는가? 기본적인 digester는 실제 jakarta에서 사용되는 xml-config의 java측 object로 변환하기 .. IT_Programming/XML 2006.01.31
XML Query Manager만들어보기 먼저 왜 이런것이 만들어지게 되었는지부터 살펴보도록 하자. XML이 점차 대두되고 EJB1.1 spec부터 deployment descriptor가 XML문서로 작성이 되기 시작하면서 EJB Container에 대한 환경들이 server start시에 동적으로 읽어들일 수 있는 환경과 환경이 바뀌더라도 실제 소스코드는 바뀌지 않으며 text conf파일의 변경.. IT_Programming/XML 2006.01.31
Java script를 이용한 웹 계산기 소스 <html> <head><title>게산기</title></head> <SCRIPT LANGUAGE="JavaScript"><!-- r = new Array(2) function setStartState() { state = "start" r[0] = "0" r[1] = "0" operand = "" ix=0 } function addDigit(n) { if (state=="gettingInteger" || state=="gettingFloat") r[ix]=appendDigit(r[ix],n) else { r[ix]="" + n state = "gettingInteger" } display(r[ix]) } function.. IT_Programming/JavaScript 2006.01.31
malloc을 사용하여 동적으로 배열을 받고 처리하는 예 #include<stdio.h> #include<stdlib.h> void main() { int size, i ; int *ptr ; printf("배열의 크기를 입력하세요. : "); scanf ("%d", &size); ptr = (int*)malloc(sizeof(int) * size); for (i =0 ; i < size ; i++) { *(ptr + i) = i*5 ; printf ("[%d : %d ]\n", i, *(ptr + i)); } } IT_Programming/C · C++ 2006.01.31
DOM 표준 인터페이스 Node 클래스 주요속성 설명 nodeName 현재 노드의 이름을 반환합니다. 읽기 전용. nodeValue 현재 노드의 값을 반환합니다. 읽고 쓰기 가능. nodeType 현재 노드의 타입을 반환합니다. 읽기 전용. childNodes 현재 노드의 모든 자식 노드들을 NodeList 타입으로 반환합니다. attributes 해당 노드에 대한 어트리뷰트 리스.. IT_Programming/XML 2006.01.30
I love it when they get specific. wary : 경계를 늦추지 않는, 조심성 있는, 방심하지 않는 * TV에서 흘러 나오는 두리뭉실한 말이 롤라는 달갑지 않은가 봅니다. English/CaFe_English 2006.01.27
What's over there ? What's over there ? What's over there ? It's a telephone What's next to the telephone ? It's a television ⊙ What's over there? : over there는 '저기, 저쪽'의 뜻. 상대어는 over here. Where is it? (어디 있지?) It's right over there. (바로 저기 있어.) Tom, come over here for a second. (톰, 여기 잠깐 와 봐.) ⊙ What's next to the telephone? : next to∼는 '∼의 옆.. English/CaFe_English 2006.01.27
Can I exchange this ? Can I exchange this ? Can I exchange this ? What happened ? The size isn't right Okay ⊙ Can I exchange this? : : 물건을 구입했다가 마음에 들지 않거나 불량품일 때 쓰는 표현. 바꿀 물건을 말하고 싶을 때는 exchange A with B의 패턴을 쓰면 된다. 환불(refund) 을 받고 싶을 때는 get a refund on ∼ 이라는 숙어 표현을 많이 쓴다. Can I ex.. English/CaFe_English 2006.01.27
Excuse me, do you have anything to drink ? Excuse me, do you have anything to drink ? Excuse me, do you have anything to drink? What would you like ? I'll have a cup of coffee Alright. Please wait a moment ⊙ Excuse me : excuse me는 '실례지만 미안합니다만'의 뜻이지만, 본문의 경우와 같이 식당 등에서 웨이터에게 말을 걸고자 할 때 의례적으로 쓰인다. Excuse me. (<식당에서> 여기요.. English/CaFe_English 2006.01.27
You speak japanese/cartoon very well You speak japanese/cartoon very well You speak japanese/cartoon very well No, there's still a long way to go Your pronunciation is really good,too Oh, no, it's not ⊙ You speak japanese/cartoon very well : 같은 뜻의 표현으로 have a good command of∼, speak fluently도 자주 쓰인다. You seem to have a good command of English. (영어를 잘하시는 것 같군요.) Not really. (별.. English/CaFe_English 2006.01.27