ASP.NET中序列化與反序列化-以顯示上一次登陸的信息爲例

場景

ASP.NET中新建Web網站並部署到IIS上(詳細圖文教程):數據庫

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/107199747編程

在上面博客中已經將網站部署到了IIS上。安全

.NET Framework 爲了保證數據的安全性,並不容許全部的對象均可序列化。網站

要序列化某對象,須要將該對象聲明爲可序列化。把一個類標識爲可序列化只須要在類上添加註解Serializable。this

要實現序列化,須要使用System.Runtime.Serialization.Formatters.Binary下的BinaryFormatter類。spa

該類提供了Serialize 和Deserialize兩個方法實現序列化和反序列化。.net

由於是要基於「流」的操做,因此須要使用System.IO下的FileStream類。設計

注:code

博客:
https://blog.csdn.net/badao_liumang_qizhi
關注公衆號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。orm

實現

想要記錄一下系統最後一次用戶登陸的信息,包括登陸名、登陸時間、登陸IP。

紀錄之後在每次打開登陸頁面時顯示上一次登陸的信息。

僅僅只有一條信息,不必在數據庫中建個表。

新建一個Web窗體頁面Login.aspx,而後打開其設計視圖,拖拽幾個標籤和輸入框

 

 

頁面代碼爲:

    <form id="form1" runat="server">
    <div>
    
        用戶名:<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <br />
        密 碼:<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
        <br />
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="登陸" />
        <br />
        <br />
        上次登陸信息-------------------<br />
        用戶名:<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
        <br />
        登陸時間:<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
        <br />
        IP:<asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
    
    </div>
    </form>

 

要序列化登陸信息對象,得新建一個登陸信息的類並標記爲可序列化

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace DeployTest.Models
{
    [Serializable]
    public class LoginModel
    {
        private string _loginName;

        public string LoginName
        {
            get { return _loginName; }
            set { _loginName = value; }
        }

        private DateTime _loginTime;

        public DateTime LoginTime
        {
            get { return _loginTime; }
            set { _loginTime = value; }
        }

        private string _loginIp;

        public string LoginIp
        {
            get { return _loginIp; }
            set { _loginIp = value; }
        }

   

    }
}

在Login.aspx.cs文件裏添加兩個用於序列化和反序列化對象的方法

        /// <summary>
        /// 序列化對象
        /// </summary>
        /// <param name="fileName"></param>
        /// <param name="lo"></param>
        private void Serializable(string fileName,LoginModel lo) 
        {
            //建立二進制格式對象
            BinaryFormatter bf = new BinaryFormatter();
            //序列化到文件中
            using(FileStream fs = new FileStream(fileName,FileMode.OpenOrCreate))
            {
                bf.Serialize(fs,lo);
            }
        }

        /// <summary>
        /// 反序列化對象
        /// </summary>
        /// <param name="fileName"></param>
        /// <returns></returns>
        private LoginModel Deserializable(string fileName)
        {
            LoginModel lo = null;
            //建立二進制格式對象
            BinaryFormatter bf = new BinaryFormatter();
            //反序列化對象
            using(FileStream fs = new FileStream(fileName,FileMode.Open))
            {
                lo = bf.Deserialize(fs) as LoginModel;
            }
            return lo;
        }

而後修改登陸按鈕的點擊事件

        protected void Button1_Click(object sender, EventArgs e)
        {
            //序列化文件的路徑
            string fileName = Server.MapPath("~/") + "lastLogin.txt";
            //獲取登陸的信息並賦值給model
            LoginModel lo = new LoginModel()
            {
                LoginName = this.TextBox1.Text,
                LoginTime = DateTime.Now,
                LoginIp = Request.UserHostAddress
            };
            //將model對象序列化到文件
            this.Serializable(fileName,lo);
        }

序列化完了,還須要在頁面加載的時候將上次序列化的信息展現到頁面上,修改Page_Load方法

        protected void Page_Load(object sender, EventArgs e)
        {
            //獲取序列化文件路徑
            string fileName = Server.MapPath("~/") + "lastLogin.txt";
            try
            {
                //反序列化文件到model
                LoginModel lo = this.Deserializable(fileName);
                //給頁面上賦值
                this.Label1.Text = lo.LoginName;
                this.Label2.Text = lo.LoginTime.ToString();
                this.Label3.Text = lo.LoginIp;
            }
            catch { 
            
            }
        }

運行項目,而後訪問Login.aspx頁面

 

 

而後來到項目所在目錄下,找到並打開lastLogin.txt

 

 

相關文章
相關標籤/搜索