일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C언어 소스
- 알고리즘
- C언어
- 소스 구현
- 무료 Java
- 소프트웨어 접근성
- C++
- gof의 디자인 패턴
- C언어 소스 코드
- XML.NET
- 디딤돌 Java 언어 Part1
- C언어 표준 라이브러리 함수 가이드
- 디딤돌 C++
- 동적 메모리 할당
- C# 소스 코드
- 설계 패턴
- Escort GoF의 디자인 패턴
- C언어 표준 라이브러리 함수 사용법 가이드
- JAVA 언어
- StringBuffer 클래스
- java
- 파일 입출력
- 디딤돌 C언어
- String 클래스
- 클래스 다이어그램
- math.h
- 소스 파일
- C#
- 소프트웨어 설계
- 소스 코드
- Today
- 4
- Total
- 98,357
목록XML.NET (14)
프로그램 소스
XmlDocument 클래스로 XML 문서 만들기 <?xml version="1.0" encoding="utf-8"?> <books> <book> <title> ADO.NET </title> </book> </books> [문서] data.xml ..
스키마를 적용하여 XML 문서 내용 읽어오기 <?xml version="1.0" encoding="utf-8"?> <contents xmlns="xs"> <book>XML.NET</book> <albumn>My Way</albumn> <book>ADO.NET</book> </..
XmlSchema 클래스로 XML 스키마 파일 작성 <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="book" type="xs:string" /> <xs:element name="albumn" type="xs:strin..
XmlReader 클래스의 ReadOuterXml 메서드 static void Main(string[] args) { using(XmlReader reader = XmlReader.Create("data.xml")) { while(reader.Read())  ..
XmlReader 클래스의 ReadInnerXml 메서드 static void Main(string[] args) { using(XmlReader reader = XmlReader.Create("data.xml")) { while(reader.Read())  ..
XmlReader 특성(Attribute) 읽기 static void Main(string[] args) { XmlReader reader = XmlReader.Create("data.xml"); while (reader.Read()) {  ..
XmlReader 개체로 요소 읽기 <?xml version="1.0" encoding="utf-8"?> <books xmlns="urn:books-schema"> <book> <title>XML.NET</title> <price>12000</price> ..
XmlReader 로 XML 문서 읽기 및 유효성 검사 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:books-schema" elementFormDefault="qualified" targetNamespace="urn:books..
XmlReader 로 XML 문서 읽기 static void Main(string[] args) { //Create(Stream input); Console.WriteLine("---------Start Test1--------"); FileStream fs = new FileStream("data.xml..