Skip to content

**** ****

for my bad memories..

Posts Tagged ‘xml’

[태그:] xml

홈페이지: http://www.libroxml.net/ C로 제작된 xml 파서이며 사용하기 아주 쉽고.. 속도도 빠르다. 스크립트 언어로 바인딩하기 좋을것 같다. 아래는 특징. – load / unload XML document from buffers or files. – navigate throughout an XML tree using simple getter API. – handle namespace. – use xpath syntax to access some nodes in the XML tree. – read […]

[태그:] xml

홈페이지: http://www.msweet.org/projects.php?Z3 다른 라이브러리에 의존적이지 않은 읽기/쓰기가 가능한 작은 XML 파서 라이브러리. 일단 API도 왠만한건 다 지원하는것 같음. MinGW에서 테스트 해보니 굿. Mini-XML is a small XML library that you can use to read and write XML and XML-like data files in your application without requiring large non-standard libraries. Mini-XML only requires an ANSI C […]

[태그:] xml

홈페이지: http://xmlsoft.org/XSLT/ 확장 마크업 언어(XML: Extensible Markup Language)은 구조화된 데이터를 텍스트 형태로 교환하기 위한 World Wide Web Consortium 표준이다. 이것의 인기는 그 보편성에서 비롯한다. 어떤 컴퓨터든지 텍스트 파일을 읽을 수 있다. 적당한 도구로, 어떤 컴퓨터든지 다른 컴퓨터의 XML 파일을 읽을 수 있다. 이 도구들 가운데 가장 중요한 것의 하나로 확장 마크업 언어 변환(XSLT: Extensible Stylesheet […]

[태그:] xml

홈페이지: http://xmlsoft.org/ Libxml2 is the XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform), it is free software available under the MIT License. XML itself is a metalanguage to design markup languages, i.e. text language where semantic and structure are added to the content using extra “markup” […]

[태그:] xml

SCEW 라이브러리는 C에서 사용가능한 expat 래퍼 XML 라이브러리이다. SCEW 라이브러리를 이용하면 expat 보다 더 상위레벨에서 좀더 쉽게 XML 데이타를 취급할 수 있다. 하지만 좀더 쉽게 접근하기 위한 패스를 제공하기 위해 아래와 같이 함수를 작성해 봤다. 아래와 같은 xml 이 있다고 할때.. c 노드를 패스로 표현하면 “/a/b/c” 로 표현된다. 나는 여기서 “/a/b/c” 표현으로 c 노드의 element를 […]

[태그:] xml

홈페이지: http://expat.sourceforge.net/ xml 파서 라이브러리. Expat is an XML parser library written in C 다운로드: 2.01

[태그:] xml

하나의 소스로 이루어진 아주 심플한 xml 포맷 라이터이다. http://www.codeproject.com/KB/XML/XML_writer.aspx 파싱작업이 필요없는분들께는 추천. xmlwriter_demo.zip xmlwriter_src.zip