asp.net三层架构详解

一、数据库

 

/*==============================================================*/
/* DBMS name:      Microsoft SQL Server 2000                    */
/*==============================================================*/
 
 
if exists (select 1
            from sysobjects
           where id = object_id('newsContent')
            and   type = 'U')
   drop table newsContent
go
 
 
/*==============================================================*/
/* Table: newsContent                                            */
/*==============================================================*/
create table newsContent (
   ID           int              identity(1,1)   primary key,
   Title          nvarchar(50)     not null,
   Content       ntext            not null,
   AddDate      datetime         not null,
  CategoryID    int              not null
)
go

 

 

 

二、项目文件架构

实现步骤为:4-3-6-5-2-1

 

ID

 

 

项目

 

 

描述

 

 

用途

 

 

项目引用关系

 

 

实例所需文件

 

 

相关方法

 

 

1

 

 

Web

 

 

表现层

 

 

Web页和控件

 

 

引用BLL

 

 

WebUI.aspx

WebUI.aspx.cs

 

 

 

GetContent()

 

 

2

 

 

BLL

 

 

业务逻辑层

 

 

业务逻辑组件

 

 

引用 IDAL,Model,使用DALFactory创建实例

 

 

Content.cs

 

 

ContentInfo GetContentInfo(int id)

 

 

3

 

 

IDAL

 

 

数据访问层接口定义

 

 

每个DAL实现都要实现的一组接口

 

 

引用 Model

 

 

IContent.cs

 

 

ContentInfo GetContentInfo(int id)

 

 

4

 

 

Model

 

 

业务实体

 

 

传递各种数据的容器

 

 

无引用

 

 

ContentInfo.cs

 

 

 

 

 

5

 

 

DALFactory

 

 

数据层的抽象工厂

 

 

创建反射,用来确定加载哪一个数据库访问程序集的类

 

 

引用IDAL,通过读取web.config里设置的程序集,加载类的实例,返回给BLL使用。

 

 

Content.cs

 

 

IDAL.Icontent create()

 

 

6

 

 

SQLServerDAL

 

 

SQLServer数据访问层

 

 

Microsoft SQL Server特定的Pet Shop DAL实现,使用了IDAL接口

 

 

引用 Model和IDAL,被DALFactory加载的程序集,实现接口里的方法。

 

 

SqlHelper.cs

 

 

 

Content.cs

 

 

SqlDataReader ExecuteReader()

PrepareCommand()

ContentInfo GetContentInfo(int id)

 

 

OracleDAL

 

 

Oracle数据访问层

 

 

7

 

 

DBUtility

 

 

数据库访问组件基础类

 

 

GetSqlServerConnectionString得到数据库连接字符串,也可省去该项目,在SQLServerDAL.SqlHelper中用static readonly string SqlConnectionString代替。

 

 

无引用

 

 

 

 

 

 

 

 

实现步骤过程

1、创建Model,实现业务实体。

2、创建IDAL,实现接口。

3、创建SQLServerDAL,实现接口里的方法。

4、增加web.config里的配置信息,为SQLServerDAL的程序集。

5、创建DALFactory,返回程序集的指定类的实例。

6、创建BLL,调用DALFactory,得到程序集指定类的实例,完成数据操作方法。

7、创建WEB,调用BLL里的数据操作方法。

注意:

1、web.config里的程序集名称必须与SQLServerDAL里的输出程序集名称一致。

2、DALFactory里只需要一个DataAccess类,可以完成创建所有的程序集实例。

3、项目创建后,注意修改各项目的默认命名空间和程序集名称。

4、注意修改解决方案里的项目依赖。

5、注意在解决方案里增加各项目引用。

 

三、各层间的访问过程

1、传入值,将值进行类型转换(为整型)。

2、创建BLL层的content.cs对象c,通过对象c访问BLL层的方法GetContentInfo(ID)调用BLL层。

3、BLL层方法GetContentInfo(ID)中取得数据访问层SQLServerDAL的实例,实例化IDAL层的接口对象dal,这个对象是由工厂层DALFactory创建的,然后返回IDAL层传入值所查找的内容的方法dal.GetContentInfo(id)。

4、数据工厂通过web.config配置文件中给定的webdal字串访问SQLServerDAL层,返回一个完整的调用SQLServerDAL层的路径给 BLL层。

5、到此要调用SQLServerDAL层,SQLServerDAL层完成赋值Model层的对象值为空,给定一个参数,调用SQLServerDAL层的SqlHelper的ExecuteReader方法,读出每个字段的数据赋值给以定义为空的Model层的对象。

6、SqlHelper执行sql命令,返回一个指定连接的数据库记录集,在这里需要引用参数类型,提供为打开连接命令执行做好准备PrepareCommand。

7、返回Model层把查询得到的一行记录值赋值给SQLServerDAL层的引入的Model层的对象ci,然后把这个对象返回给BLL。

8、回到Web层的BLL层的方法调用,把得到的对象值赋值给Lable标签,在前台显示给界面

 

四、项目中的文件清单

 

1、DBUtility项目

(1)connectionInfo.cs

 

using System;
using System.Configuration;
 
namespace Utility
{
       /// <summary>
       
/// ConnectionInfo 的摘要说明。
       
/// </summary>
       public class ConnectionInfo
       {
              public static string GetSqlServerConnectionString()
              {
                     return ConfigurationSettings.AppSettings["SQLConnString"];
              }
       }
}

 

2、SQLServerDAL项目

(1)SqlHelper.cs抽象类

 

using System;
using System.Data;
using System.Data.SqlClient;
using DBUtility;
 
namespace SQLServerDAL
{
       /// <summary>
       
/// SqlHelper 的摘要说明。
       
/// </summary>
       public abstract class SqlHelper
       {
              public static readonly string CONN_STR = ConnectionInfo.GetSqlServerConnectionString();
 
              /// <summary>
              
/// 用提供的函数,执行SQL命令,返回一个从指定连接的数据库记录集
              
/// </summary>
              
/// <remarks>
              
/// 例如:
              
/// SqlDataReader r = ExecuteReader(connString, CommandType.StoredProcedure, "PublishOrders", new SqlParameter("@prodid", 24));
              
/// </remarks>
              
/// <param name="connectionString">SqlConnection有效的SQL连接字符串</param>
              
/// <param name="commandType">CommandType:CommandType.Text、CommandType.StoredProcedure</param>
              
/// <param name="commandText">SQL语句或存储过程</param>
              
/// <param name="commandParameters">SqlParameter[]参数数组</param>
              
/// <returns>SqlDataReader:执行结果的记录集</returns>
              public static SqlDataReader ExecuteReader(string connString, CommandType cmdType, string cmdText, params SqlParameter[] cmdParms)
              {
                     SqlCommand cmd = new SqlCommand();
                     SqlConnection conn = new SqlConnection(connString);
 
                     // 我们在这里用 try/catch 是因为如果这个方法抛出异常,我们目的是关闭数据库连接,再抛出异常,
                     
// 因为这时不会有DataReader存在,此后commandBehaviour.CloseConnection将不会工作。
                     try
                     {
                            PrepareCommand(cmd, conn, null, cmdType, cmdText, cmdParms);
                            SqlDataReader rdr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
                            cmd.Parameters.Clear();
                            return rdr;
                     }
                     catch
                     {
                            conn.Close();
                            throw;
                     }
              }
 
 
              /// <summary>
              
/// 为执行命令做好准备:打开数据库连接,命令语句,设置命令类型(SQL语句或存储过程),函数语取。
              
/// </summary>
              
/// <param name="cmd">SqlCommand 组件</param>
              
/// <param name="conn">SqlConnection 组件</param>
              
/// <param name="trans">SqlTransaction 组件,可以为null</param>
              
/// <param name="cmdType">语句类型:CommandType.Text、CommandType.StoredProcedure</param>
              
/// <param name="cmdText">SQL语句,可以为存储过程</param>
              
/// <param name="cmdParms">SQL参数数组</param>
              private static void PrepareCommand(SqlCommand cmd, SqlConnection conn, SqlTransaction trans, CommandType cmdType, string cmdText, SqlParameter[] cmdParms)
              {
 
                     if (conn.State != ConnectionState.Open)
                            conn.Open();
 
                     cmd.Connection = conn;
                     cmd.CommandText = cmdText;
 
                     if (trans != null)
                            cmd.Transaction = trans;
 
                     cmd.CommandType = cmdType;
 
                     if (cmdParms != null)
                     {
                            foreach (SqlParameter parm in cmdParms)
                                   cmd.Parameters.Add(parm);
                     }
              }
       }
}

 

(2)Content.cs类

 

using System;
using System.Data;
using System.Data.SqlClient;
using Model;
using IDAL;
 
namespace SQLServerDAL
{
       /// <summary>
       
/// Content 的摘要说明。
       
/// </summary>
       public class Content:IContent 
       {
 
              private const string PARM_ID = "@ID";
              private const string SQL_SELECT_CONTENT = "Select ID, Title, Content, AddDate, CategoryID From newsContent Where ID = @ID";
 
 
              public ContentInfo GetContentInfo(int id)
              {
                     //创意文章内容类
                     ContentInfo ci = null;
 
                     //创建一个参数
                     SqlParameter parm = new SqlParameter(PARM_ID, SqlDbType.BigInt, 8);
                     //赋上ID值
                     parm.Value = id;
 
                     using(SqlDataReader sdr = SqlHelper.ExecuteReader(SqlHelper.CONN_STR, CommandType.Text, SQL_SELECT_CONTENT, parm))
                     {
                            if(sdr.Read())
                            { 
                                   ci = new ContentInfo(sdr.GetInt32(0),sdr.GetString(1), sdr.GetString(2),
                                          sdr.GetDateTime(3), sdr.GetInt32(4), sdr.GetInt32(5), sdr.GetString(6));
                            }
                     }
                     return ci;
              }
       }
}

 

 

 

3、Model项目

(1)contentInfo.cs

 

using System;
 
namespace Model
{
       /// <summary>
       
/// Class1 的摘要说明。
       
/// </summary>
       public class ContentInfo
       {
              private int _ID;
              private string _Content;
              private string _Title;
              private string _From;
              private DateTime _AddDate;
              private int _clsID;
              private int _tmpID;
 
              /// <summary>
              
/// 文章内容构造函数
              
/// </summary>
              
/// <param name="id">文章流水号ID</param>
              
/// <param name="content">文章内容</param>
              
/// <param name="title">文章标题</param>
              
/// <param name="from">文章来源</param>
              
/// <param name="clsid">文章的分类属性ID</param>
              
/// <param name="tmpid">文章的模板属性ID</param>
              public ContentInfo(int id,string title,string content,string from,DateTime addDate,int clsid,int tmpid )
              {
                     this._ID = id;
                     this._Content = content;
                     this._Title = title;
                     this._From = from;
                     this._AddDate = addDate;
                     this._clsID = clsid;
                     this._tmpID = tmpid;
              }
 
 
              //属性
              public int ID
              {
                     get   { return _ID; }
              }
              public string Content
              {
                     get   { return _Content; }
              }
              public string Title
              {
                     get   { return _Title; }
              }
              public string From
              {
                     get   { return _From; }
              }
              public DateTime AddDate
              {
                     get   { return _AddDate; }
              }
              public int ClsID
              {
                     get   { return _clsID; }
              }
              public int TmpID
              {
                     get   { return _tmpID; }
              }
 
 
 
       }
}

 

4、IDAL项目

(1)Icontent.cs

 

using System;
using Model;
 
namespace IDAL
{
       /// <summary>
       
/// 文章内容操作接口
       
/// </summary>
       public interface IContent
       {
              /// <summary>
              
/// 取得文章的内容。
              
/// </summary>
              
/// <param name="id">文章的ID</param>
              
/// <returns></returns>
              ContentInfo GetContentInfo(int id);
       }
}

 

 

5、DALFactory项目

(1)Content.cs

 

using System;
using System.Reflection;
using System.Configuration;
using IDAL;
 
namespace DALFactory
{
       /// <summary>
       
/// 工产模式实现文章接口。
       
/// </summary>
       public class Content
       {
              public static IDAL.IContent Create()
              {
                     // 这里可以查看 DAL 接口类。
                     string path = System.Configuration.ConfigurationSettings.AppSettings["WebDAL"].ToString();
                     string className = path+".Content";
                    
                     // 用配置文件指定的类组合
                     return (IDAL.IContent)Assembly.Load(path).CreateInstance(className);
              }
       }
}

 

 

6、BLL项目

(1)Content.cs

 

using System;
 
using Model;
using IDAL;
 
namespace BLL
{
       /// <summary>
       
/// Content 的摘要说明。
       
/// </summary>
       public class Content
       {
 
              public ContentInfo GetContentInfo(int id)
              {
 
                     // 取得从数据访问层取得一个文章内容实例
                     IContent dal = DALFactory.Content.Create();
 
                     // 用DAL查找文章内容
                     return dal.GetContentInfo(id);
              }
       }
}

 

 

 

7、Web项目

1、Web.config:

 

<appSettings>  

<add key="SQLConnString" value="Data Source=localhost;Persist Security info=True;Initial Catalog=newsDB;User ID=sa;Password= " />
    <add key="WebDAL" value="SQLServerDAL" />   
 </appSettings>

 

2、WebUI.aspx

 

<%@ Page language="c#" Codebehind="WebUI.aspx.cs" AutoEventWireup="false" Inherits="Web.WebUI" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
       <HEAD>
              <title>WebUI</title>
              <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
              <meta name="CODE_LANGUAGE" Content="C#">
              <meta name="vs_defaultClientScript" content="JavaScript">
              <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
       </HEAD>
       <body MS_POSITIONING="GridLayout">
              <form id="Form1" method="post" runat="server">
                     <FONT">宋体"></FONT>
                     <table width="600" border="1">
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;
                                          <asp:Label id="lblTitle" runat="server"></asp:Label></td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px; HEIGHT: 22px">&nbsp;</td>
                                   <td style="HEIGHT: 22px">&nbsp;
                                          <asp:Label id="lblDataTime" runat="server"></asp:Label></td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;
                                          <asp:Label id="lblContent" runat="server"></asp:Label></td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;</td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px; HEIGHT: 23px">&nbsp;</td>
                                   <td style="HEIGHT: 23px">&nbsp;</td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;</td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;</td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;</td>
                            </tr>
                            <tr>
                                   <td style="WIDTH: 173px">&nbsp;</td>
                                   <td>&nbsp;
                                          <asp:Label id="lblMsg" runat="server">Label</asp:Label></td>
                            </tr>
                     </table>
              </form>
       </body>
</HTML>

 

 

 

 

 

3、WebUI.aspx.cs后台调用显示:

 

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
 
using BLL;
using Model;
 
namespace myWeb
{
       /// <summary>
       
/// WebForm1 的摘要说明。
       
/// </summary>
       public class WebUI : System.Web.UI.Page
       {
              protected System.Web.UI.WebControls.Label lblTitle;
              protected System.Web.UI.WebControls.Label lblDataTime;
              protected System.Web.UI.WebControls.Label lblContent;
              protected System.Web.UI.WebControls.Label lblMsg;
 
              private ContentInfo ci ;
 
 
              private void Page_Load(object sender, System.EventArgs e)
              {
                     if(!Page.IsPostBack)
                     {
                            GetContent("1");
                     }
              }
 
              private void GetContent(string id)
              {
                     int ID = WebComponents.CleanString.GetInt(id);
             
                     Content c = new Content();
                     ci = c.GetContentInfo(ID);
                     if(ci!=null)
                     {
                            this.lblTitle.Text = ci.Title;
                            this.lblDataTime.Text = ci.AddDate.ToString("yyyy-MM-dd");
                            this.lblContent.Text = ci.Content;
                     }
                     else
                     {
                            this.lblMsg.Text = "没有找到这篇文章";
                     }
              }
 
              #region Web 窗体设计器生成的代码
              override protected void OnInit(EventArgs e)
              {
                     //
                     
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
                     
//
                     InitializeComponent();
                     base.OnInit(e);
              }
             
              /// <summary>
              
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
              
/// 此方法的内容。
              
/// </summary>
              private void InitializeComponent()
              {   
                     this.Load += new System.EventHandler(this.Page_Load);
 
              }
              #endregion
       }
}

 

 

4、WebComponents项目

(1)CleanString.cs

 

using System;
using System.Text;
 
namespace myWeb.WebComponents
{
       /// <summary>
       
/// CleanString 的摘要说明。
       
/// </summary>
       public class CleanString
       {
 
              public static int GetInt(string inputString)
              {
                     try
                     {
                            return Convert.ToInt32(inputString);
                     }
                     catch
                     {
                            return 0;
                     }
 
              }
 
 
              public static string InputText(string inputString, int maxLength)
              {
                     StringBuilder retVal = new StringBuilder();
 
                     // check incoming parameters for null or blank string
                     if ((inputString != null) && (inputString != String.Empty))
                     {
                            inputString = inputString.Trim();
 
                            //chop the string incase the client-side max length
                            
//fields are bypassed to prevent buffer over-runs
                            if (inputString.Length > maxLength)
                                   inputString = inputString.Substring(0, maxLength);
 
                            //convert some harmful symbols incase the regular
                            
//expression validators are changed
                            for (int i = 0; i < inputString.Length; i++)
                            {
                                   switch (inputString[i])
                                   {
                                          case '"':
                                                 retVal.Append("&quot;");
                                                 break;
                                          case '<':
                                                 retVal.Append("&lt;");
                                                 break;
                                          case '>':
                                                 retVal.Append("&gt;");
                                                 break;
                                          default:
                                                 retVal.Append(inputString[i]);
                                                 break;
                                   }
                            }
 
                            // Replace single quotes with white space
                            retVal.Replace("'"" ");
                     }
 
                     return retVal.ToString();
                    
              }
               
       }
}

 

转载于:https://www.cnblogs.com/cresuccess/archive/2008/12/10/1351675.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/496562.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

在Linux环境下使用C语言倒转字符串,输出错误的解决办法

项目场景&#xff1a; 学习在Linux环境下的C语言编程&#xff0c;利用GDB打Breakpoint&#xff0c;逐步调试Bug 问题描述 尝试将一个字符串倒转后输出&#xff0c;发现执行文件并没有正常的将倒转后的字符串输出。 源代码&#xff1a; #include <stdio.h>int main(voi…

“机器人之夜”看猎豹跑得快还是五款机器人价格降得快?“鸿门宴”正式上演

来源&#xff1a;机器人大讲堂3 月 21 日&#xff0c;猎豹移动&#xff08;NYSE: CMCM&#xff09;联合旗下人工智能公司猎户星空在北京水立方举行“猎豹3.21机器人之夜”发布会&#xff0c;发布自主研发的猎户机器人平台Orion OS&#xff0c;并推出五款全系列机器人产品&#…

mysql sysbench_详解MySQL基准测试和sysbench工具

一、基准测试简介1、什么是基准测试数据库的基准测试是对数据库的性能指标进行定量的、可复现的、可对比的测试。基准测试与压力测试基准测试可以理解为针对系统的一种压力测试。但基准测试不关心业务逻辑&#xff0c;更加简单、直接、易于测试&#xff0c;数据可以由工具生成&…

windows 堆栈溢出简易测试代码

环境&#xff1a;windows xp sp2 vc 6.0 Code1#include <stdio.h> 2 3int fun2() 4{ 5 printf("-------------Get privilege!---------\n"); 6 getchar(); 7 return 0; 8} 910int fun1()11{12 int iRet 0;13 int *pRet &iRet;14 pRet…

数字电路中的Single-Bit跨时钟域设计

数字电路中的Single-Bit跨时钟域设计同步时钟&异步时钟的定义Metastable&#xff08;亚稳态&#xff09;Metastable的产生原因Setup / Hold Requirement的真正原因Metastable造成的问题跨时钟域同步设计跨时钟域处理目标Single-bit的Clock Domin Crossing (CDC) 电路Single…

《Nature》重磅 | 研究员利用机器学习发现近 6000 种未知病毒

作者&#xff1a;李雨晨《Nature》杂志近日发布消息称&#xff0c;研究人员利用人工智能发现了近6000种未知的病毒。这项工作是在3月15日由美国能源部(DOE)组织的一次会议上提出的&#xff0c;它展示了一种探索地球上巨大而未知的病毒多样性的新工具。从人类健康到垃圾降解&…

mysql limit to hosts matching_MySQL 用户访问限制 -- Host Match Limit

笔者前几日在做数据库迁移的时候&#xff0c;发现了一个挺有意思的小东西&#xff1a;数据库访问限制(Host Match limit),简单地翻阅了下给官方资料&#xff0c;发现这个东西应用场景其实非常广泛&#xff0c;只是我们采用了其他可能没有原生数据库带的Access Limit 功能好地方…

Java加密与解密的艺术~SM4实现

国产SM4加密解密算法概念介绍 SMS4算法是在国内广泛使用的WAPI无线网络标准中使用的加密算法&#xff0c;是一种32轮的迭代非平衡Feistel结构的分组加密算法&#xff0c;其密钥长度和分组长度均为128。SMS4算法的加解密过程中使用的算法是完全相同的&#xff0c;唯一不同点在于…

英语连接词2

表示附加的词:additionally, as well as, just as, again, along with, also, further, furthermore, likewise, in the same manner, in the same way, in addition to,引出例子:for example, namely, for instance, as an example, that is表示转折:although, instead, rathe…

数字电路中的Multi-bits跨时钟域设计

数字电路中的Multi-bits跨时钟域设计跨时钟域同步设计跨时钟域处理目标Multi-bits的Clock Domin Crossing (CDC) 电路设计1-bit "Guard" 信号同步multi-bits数据其他的Multi-bits跨时钟域同步设计跨时钟域电路的仿真验证跨时钟域同步设计 跨时钟域处理目标 在跨时钟…

packetbeat mysql_简单使用packetbeat

在前面两篇文章中记录了使用logstash来收集mysql的慢查询日志&#xff0c;然后通过kibana以web的方式展示出来&#xff0c;但在生产环境中&#xff0c;需求会更复杂一些&#xff0c;而且通过logstash写正则&#xff0c;实在是个费时费劲的事。例如在生产环境中会有要求分析某个…

ACM公布2017年图灵奖,大卫·帕特森和约翰·轩尼诗获奖

来源&#xff1a;网络大数据刚刚&#xff0c;美国计算机协会(ACM)宣布 John L. Hennessy 和 David A. Patterson 荣获 2017 年图灵奖。目前这两位学者都供职于谷歌&#xff0c;前者是谷歌母公司 Alphabet 的董事会主席&#xff0c;后者任谷歌杰出工程师&#xff0c;致力于研究机…

Java加密与解密的艺术~DES实现

密钥长度与安全性成正比&#xff0c;但Java仅支持56位密钥长度&#xff0c;作为补充&#xff0c;Bouncy Castle 提供64位密钥长度支持。在此基础上配合不同填充方式&#xff08;如PKCS5Padding&#xff0c;PKCS7Padding&#xff09;&#xff0c;可显著提高加密系统的安全性。 D…

YOLOv8改进 | 主干篇 | 利用SENetV2改进网络结构 (全网首发改进)

一、本文介绍 本文给大家带来的改进机制是SENetV2&#xff0c;其是2023.11月的最新机制(所以大家想要发论文的可以在上面下点功夫)&#xff0c;其是一种通过调整卷积网络中的通道关系来提升性能的网络结构。SENet并不是一个独立的网络模型&#xff0c;而是一个可以和现有的任何…

Linux学习路线及网络编程经典书籍

linux学习资源整理&#xff1a;https://zhuanlan.zhihu.com/p/22654634 Linux初学者(学习资料)&#xff1a;https://zhuanlan.zhihu.com/p/21723250 知乎 - 你是如何学习 Linux 编程的&#xff1f;&#xff1a;https://www.zhihu.com/question/20730157 如果让你推荐一本 Linux…

在Windows 7解决GAC错误

调试一网站源代码出现下面的错误 错误 1 Could not load file or assembly Microsoft.ReportViewer.WebForms, Version8.0.0.0, Cultureneutral, PublicKeyTokenb03f5f7f11d50a3a or one of its dependencies. The system cannot find the file specified. D:\3layerhotel\WebS…

CVPR 2018 | 腾讯AI Lab入选21篇论文详解

来源:腾讯AI实验室近十年来在国际计算机视觉领域最具影响力、研究内容最全面的顶级学术会议CVPR&#xff0c;近日揭晓2018年收录论文名单&#xff0c;腾讯AI Lab共有21篇论文入选&#xff0c;位居国内企业前列&#xff0c;我们将在下文进行详解&#xff0c;欢迎交流与讨论。去年…

mysql判断不等于空的脚本_Shell脚本中判断输入变量或者参数是否为空的方法

1.判断变量复制代码代码如下:read -p "input a word :" wordif [ ! -n "$word" ] ;thenecho "you have not input a word!"elseecho "the word you input is $word"fi2.判断输入参数复制代码代码如下:#!/bin/bashif [ ! -n "$1&…

Java加密与解密的艺术~DESede实现

DESede 实现 /*** 2009-10-5*/ package org.zlex.chapter07_2;import java.security.Key;import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.DESedeKeySpec;/*…

update-rc.d 更新 Linux 系统启动项 命令 用法详解

探究 Ubuntu 下的 update-rc.d 命令&#xff1a;http://www.linuxdiyf.com/linux/13362.html Update-rc.d && rc.local 管理 Ubuntu 的开机启动&#xff1a;http://www.linuxdiyf.com/linux/1057.html 通过 update-rc.d 来管理 Ubuntu 系统的自动启动程序&#xff1a;h…