블로그 이미지
암초보

calendar

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

Notice

Tag

01-09 17:59
2010. 11. 16. 11:39 O/S/각종 O/S 관련

exit code indicates if a signal may be sent.

So. it does nothing, but the exit code of your "kill -0 PID" command just returns 0 if you can send a signal to PID, and returns 1 if you can't (don't have access or invalid PID)


결론
해당 프로세스가 있으면 0, 없으면 1을 리턴한다네요.

'O/S > 각종 O/S 관련' 카테고리의 다른 글

솔라리스 cpu, memory 확인  (0) 2011.01.25
AIX cpu 정보 보기  (0) 2010.12.27
linux cpu,ram, bit 확인  (0) 2010.11.24
유닉스에서 shell 실행시 "bad interpreter"  (0) 2010.11.22
nohup 사용하기  (0) 2010.11.01
posted by 암초보
2010. 11. 9. 16:17 프로그래밍/XML
XPath 사용시 namespace가 있으면...

엘리먼트를 못찾는다.

해당 엘리먼트의 네임스페이스를 설정해주면 찾을수가 있다...

예시)
   - xml
<nsp:title xmlns:nsp="http://xxx.xxx.xxxxxx" />

   - 파싱 방법!!
  Document doc = null;
  SAXBuilder sbuilder = new SAXBuilder();
  try {
   doc = sbuilder.build(targetFile);
   XPath xpath = XPath.newInstance(path);
   namespacePrefix = "nsp";
   namespaceUri =
"http://xxx.xxx.xxxxxx";
   xpath.addNamespace(namespacePrefix, namespaceUri);
 
.....


굿.

'프로그래밍 > XML' 카테고리의 다른 글

OXM(Object-XML Mapping) 기술  (0) 2011.09.30
파이어폭스에서 XML 사용시 주의할 점.  (0) 2009.10.19
posted by 암초보
2010. 11. 3. 14:46 프로그래밍/TDD

'프로그래밍 > TDD' 카테고리의 다른 글

TEST 용 import static 템플릿  (0) 2011.10.05
특정 테스트 메소드만 실행는 방법  (0) 2011.09.29
Mockito  (0) 2011.09.26
테스트...  (0) 2011.09.21
JUnit 라이브러리 구조  (0) 2010.11.03
posted by 암초보