XmlSerializer Demo : XML Serialize « XML « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
VB.Net » XML » XML SerializeScreenshots 
XmlSerializer Demo
XmlSerializer Demo

Imports System.Xml
Imports System.Xml.Serialization
Imports System.IO


Public Class MainClass

   Public Shared Sub Main()
        Dim dehydrated As FileStream = New FileStream("test.xml", FileMode.Open)

        Dim serialize As XmlSerializer = New XmlSerializer(GetType(Product_Multiple))

        Dim myProduct As Product_Multiple = New Product_Multiple

        myProduct = serialize.Deserialize(dehydrated)

        Dim SingleProduct As Product

        For Each SingleProduct In myProduct.multiProducts
            Console.Out.WriteLine("{0}, {1}, {2}", _
               SingleProduct.name, _
               SingleProduct.productId, _
               SingleProduct.quantity)
        Next

   End Sub
End Class


Public Class Product_Multiple

    Public multiProducts() As Product

    Public Sub New()
    End Sub

    Public Sub New(ByVal multiProducts() As Product)
        Me.multiProducts = multiProducts
    End Sub
End Class


Public Class Product
    Public name As String
    Public productId As Integer
    Public quantity As Integer

    Public Sub New()
    End Sub

    Public Sub New(ByVal name As String, _
                   ByVal productId As Integer, _
                   ByVal quantity As Integer)
        Me.name = name
        Me.productId = productId
        Me.quantity = quantity
    End Sub
End Class


'<?xml version="1.0" encoding="utf-8" ?>
'<Product_Multiple xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
'  <multiProducts>
'    <Product>
'      <name>Grease</name>
'      <productId>101</productId>
'      <quantity>10</quantity>
'    </Product>
'    <Product>
'      <name>Lawrence of Arabia</name>
'      <productId>102</productId>
'      <quantity>10</quantity>
'    </Product>
'    <Product>
'      <name>Star Wars</name>
'      <productId>103</productId>
'      <quantity>10</quantity>
'    </Product>
'  </multiProducts>
'</Product_Multiple>

           
       
Related examples in the same category
1. Serialize Class to XML Document
w_w__w__.___java__2s_.c_o___m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.