C#导入数据使用Task异步处理耗时任务

C#多线程中,我们可以使用async和await来异步处理耗时任务。

现在我们打开一个Excel表格,将Excel表格的每一行数据进行处理,并存储到数据库中

新建Windows应用程序DataImportDemo,.net framework 4.6.1

将默认的Form1重命名为FormDataImport,

窗体FormDataImport设计如图:

窗体FormDataImport设计器代码如下:

FormDataImport.Designer.cs文件


namespace DataImportDemo
{partial class FormDataImport{/// <summary>/// 必需的设计器变量。/// </summary>private System.ComponentModel.IContainer components = null;/// <summary>/// 清理所有正在使用的资源。/// </summary>/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>protected override void Dispose(bool disposing){if (disposing && (components != null)){components.Dispose();}base.Dispose(disposing);}#region Windows 窗体设计器生成的代码/// <summary>/// 设计器支持所需的方法 - 不要修改/// 使用代码编辑器修改此方法的内容。/// </summary>private void InitializeComponent(){this.dgvData = new System.Windows.Forms.DataGridView();this.btnSave = new System.Windows.Forms.Button();this.rtxtMessage = new System.Windows.Forms.RichTextBox();this.btnExport = new System.Windows.Forms.Button();this.dgvcCoreID = new System.Windows.Forms.DataGridViewTextBoxColumn();this.dgvcModuleBarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();this.dgvcPoleCode = new System.Windows.Forms.DataGridViewTextBoxColumn();this.dgvcModuleCategory = new System.Windows.Forms.DataGridViewTextBoxColumn();this.progressBarImport = new System.Windows.Forms.ProgressBar();((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();this.SuspendLayout();// // dgvData// this.dgvData.AllowUserToAddRows = false;this.dgvData.AllowUserToDeleteRows = false;this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {this.dgvcCoreID,this.dgvcModuleBarcode,this.dgvcPoleCode,this.dgvcModuleCategory});this.dgvData.Location = new System.Drawing.Point(12, 61);this.dgvData.Name = "dgvData";this.dgvData.ReadOnly = true;this.dgvData.RowTemplate.Height = 23;this.dgvData.Size = new System.Drawing.Size(627, 628);this.dgvData.TabIndex = 0;// // btnSave// this.btnSave.Font = new System.Drawing.Font("宋体", 16F);this.btnSave.Location = new System.Drawing.Point(67, 9);this.btnSave.Name = "btnSave";this.btnSave.Size = new System.Drawing.Size(233, 43);this.btnSave.TabIndex = 1;this.btnSave.Text = "打开Excel并导入数据";this.btnSave.UseVisualStyleBackColor = true;this.btnSave.Click += new System.EventHandler(this.btnSave_Click);// // rtxtMessage// this.rtxtMessage.Location = new System.Drawing.Point(645, 61);this.rtxtMessage.Name = "rtxtMessage";this.rtxtMessage.Size = new System.Drawing.Size(621, 628);this.rtxtMessage.TabIndex = 2;this.rtxtMessage.Text = "";// // btnExport// this.btnExport.Font = new System.Drawing.Font("宋体", 16F);this.btnExport.Location = new System.Drawing.Point(336, 9);this.btnExport.Name = "btnExport";this.btnExport.Size = new System.Drawing.Size(122, 43);this.btnExport.TabIndex = 3;this.btnExport.Text = "导出模板";this.btnExport.UseVisualStyleBackColor = true;this.btnExport.Click += new System.EventHandler(this.btnExport_Click);// // dgvcCoreID// this.dgvcCoreID.HeaderText = "序号";this.dgvcCoreID.Name = "dgvcCoreID";this.dgvcCoreID.ReadOnly = true;// // dgvcModuleBarcode// this.dgvcModuleBarcode.HeaderText = "模组条码";this.dgvcModuleBarcode.Name = "dgvcModuleBarcode";this.dgvcModuleBarcode.ReadOnly = true;this.dgvcModuleBarcode.Width = 180;// // dgvcPoleCode// this.dgvcPoleCode.HeaderText = "极性编码";this.dgvcPoleCode.Name = "dgvcPoleCode";this.dgvcPoleCode.ReadOnly = true;// // dgvcModuleCategory// this.dgvcModuleCategory.HeaderText = "模组类型";this.dgvcModuleCategory.Name = "dgvcModuleCategory";this.dgvcModuleCategory.ReadOnly = true;this.dgvcModuleCategory.Width = 140;// // progressBarImport// this.progressBarImport.Location = new System.Drawing.Point(529, 15);this.progressBarImport.Name = "progressBarImport";this.progressBarImport.Size = new System.Drawing.Size(737, 23);this.progressBarImport.TabIndex = 4;// // FormDataImport// this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;this.ClientSize = new System.Drawing.Size(1305, 710);this.Controls.Add(this.progressBarImport);this.Controls.Add(this.btnExport);this.Controls.Add(this.rtxtMessage);this.Controls.Add(this.btnSave);this.Controls.Add(this.dgvData);this.Name = "FormDataImport";this.Text = "数据导入使用async,await异步处理耗时任务";((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();this.ResumeLayout(false);}#endregionprivate System.Windows.Forms.DataGridView dgvData;private System.Windows.Forms.Button btnSave;private System.Windows.Forms.RichTextBox rtxtMessage;private System.Windows.Forms.Button btnExport;private System.Windows.Forms.DataGridViewTextBoxColumn dgvcCoreID;private System.Windows.Forms.DataGridViewTextBoxColumn dgvcModuleBarcode;private System.Windows.Forms.DataGridViewTextBoxColumn dgvcPoleCode;private System.Windows.Forms.DataGridViewTextBoxColumn dgvcModuleCategory;private System.Windows.Forms.ProgressBar progressBarImport;}
}

添加对NPOI框架的引用

添加对【NPOI.dll、NPOI.OOXML.dll、NPOI.OpenXml4Net.dll、NPOI.OpenXmlFormats.dll】类库的引用.

新建类NpoiExcelOperateUtil,用于【Excel表格与DataTable内存数据表的相互转换操作】

NpoiExcelOperateUtil.cs源程序:

using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using NPOI.XSSF.UserModel;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace DataImportDemo
{/// <summary>/// Excel表格与DataTable内存数据表的相互转换操作类/// 斯内科 2023-08-08/// </summary>public static class NpoiExcelOperateUtil{/// <summary>/// Excel的第一个工作簿(Sheet)转化成DataTable/// 使用EXCEL的第一个工作簿,默认为Sheet1/// </summary>/// <param name="file"></param>/// <returns></returns>public static DataTable ExcelToTable(string file){DataTable dt = new DataTable();IWorkbook workbook;string fileExt = Path.GetExtension(file).ToLower();using (FileStream fs = new FileStream(file, FileMode.Open, FileAccess.Read)){//XSSFWorkbook 适用XLSX格式,HSSFWorkbook 适用XLS格式if (fileExt == ".xlsx"){workbook = new XSSFWorkbook(fs);}else if (fileExt == ".xls"){workbook = new HSSFWorkbook(fs);}else{return null;}//第一个工作簿ISheet sheet = workbook.GetSheetAt(0);if (sheet == null){return null;}return ExcelToTable(file, sheet.SheetName);}}/// <summary>/// Excel的指定Sheet转化成内存表/// </summary>/// <param name="file">路径</param>/// <param name="sheetName">sheet名称</param>/// <returns></returns>public static DataTable ExcelToTable(string file, string sheetName){DataTable[] dataTables = ExcelToTable(file, new List<string>() { sheetName });if (dataTables != null && dataTables.Length > 0){return dataTables[0];}return null;}/// <summary>/// 一个excel文件的多个Sheet转化成内存表数组,/// 每个Sheet都对应一个数据表/// </summary>/// <param name="file">路径</param>/// <param name="list_SheetName">sheet名称集合</param>/// <returns></returns>public static DataTable[] ExcelToTable(string file, List<string> list_SheetName){int count = list_SheetName.Count;DataTable[] dtS = new DataTable[count];//===============================//IWorkbook workbook;string fileExt = Path.GetExtension(file).ToLower();using (FileStream fs = new FileStream(file, FileMode.Open, FileAccess.Read)){//XSSFWorkbook 适用XLSX格式,HSSFWorkbook 适用XLS格式if (fileExt == ".xlsx"){workbook = new XSSFWorkbook(fs);}else if (fileExt == ".xls"){workbook = new HSSFWorkbook(fs);}else{return null;}ISheet[] sheetS = new ISheet[count];for (int k = 0; k < count; k++){dtS[k] = new DataTable(list_SheetName[k]);sheetS[k] = workbook.GetSheet(list_SheetName[k]);ISheet sheet = sheetS[k];if (sheet == null){continue;}DataTable dt = new DataTable(list_SheetName[k]);//表头  IRow header = sheet.GetRow(sheet.FirstRowNum);List<int> columns = new List<int>();for (int i = 0; i < header.LastCellNum; i++){object obj = GetValueType(header.GetCell(i));if (obj == null || obj.ToString() == string.Empty){dt.Columns.Add(new DataColumn("Columns" + i.ToString()));}elsedt.Columns.Add(new DataColumn(obj.ToString()));columns.Add(i);}//数据  for (int i = sheet.FirstRowNum + 1; i <= sheet.LastRowNum; i++){DataRow dr = dt.NewRow();bool hasValue = false;foreach (int j in columns){dr[j] = GetValueType(sheet.GetRow(i).GetCell(j));if (dr[j] != null && dr[j].ToString() != string.Empty){hasValue = true;}}if (hasValue){dt.Rows.Add(dr);}}dtS[k] = dt;}}return dtS;}/// <summary>/// Datable导出成Excel/// </summary>/// <param name="dt"></param>/// <param name="file"></param>public static void TableToExcel(DataTable dt, string file){IWorkbook workbook;string fileExt = Path.GetExtension(file).ToLower();if (fileExt == ".xlsx"){//workbook = new XSSFWorkbook();workbook = new HSSFWorkbook();}else if (fileExt == ".xls"){workbook = new HSSFWorkbook();}else{workbook = null;}if (workbook == null){return;}ISheet sheet = string.IsNullOrEmpty(dt.TableName) ? workbook.CreateSheet("Sheet1") : workbook.CreateSheet(dt.TableName);//表头  IRow row = sheet.CreateRow(0);for (int i = 0; i < dt.Columns.Count; i++){ICell cell = row.CreateCell(i);cell.SetCellValue(dt.Columns[i].ColumnName);}//数据  for (int i = 0; i < dt.Rows.Count; i++){IRow row1 = sheet.CreateRow(i + 1);for (int j = 0; j < dt.Columns.Count; j++){ICell cell = row1.CreateCell(j);cell.SetCellValue(dt.Rows[i][j].ToString());}}//转为字节数组  MemoryStream stream = new MemoryStream();workbook.Write(stream);var buf = stream.ToArray();//保存为Excel文件  using (FileStream fs = new FileStream(file, FileMode.Create, FileAccess.Write)){fs.Write(buf, 0, buf.Length);fs.Flush();}}/// <summary>/// 获取单元格类型/// </summary>/// <param name="cell"></param>/// <returns></returns>private static object GetValueType(ICell cell){if (cell == null)return null;switch (cell.CellType){case CellType.Blank: //BLANK:  return null;case CellType.Boolean: //BOOLEAN:  return cell.BooleanCellValue;case CellType.Numeric: //NUMERIC:  return cell.NumericCellValue;case CellType.String: //STRING:  return cell.StringCellValue;case CellType.Error: //ERROR:  return cell.ErrorCellValue;case CellType.Formula: //FORMULA:  default:return "=" + cell.CellFormula;}}}
}

窗体FormDataImport的异步耗时任务代码如下:

FormDataImport.cs文件

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace DataImportDemo
{public partial class FormDataImport : Form{public FormDataImport(){InitializeComponent();rtxtMessage.ReadOnly = true;progressBarImport.Value = 0;dgvData.AutoGenerateColumns = false;dgvcCoreID.DataPropertyName = "序号";dgvcModuleBarcode.DataPropertyName = "模组条码";dgvcPoleCode.DataPropertyName = "极性编码";dgvcModuleCategory.DataPropertyName = "模组类型";}/// <summary>/// 显示推送消息/// </summary>/// <param name="msg"></param>private void DisplayMessage(string msg){this.BeginInvoke(new Action(() =>{if (rtxtMessage.TextLength > 20480){rtxtMessage.Clear();}rtxtMessage.AppendText($"{DateTime.Now.ToString("HH:mm:ss.fff")}->{msg}\n");rtxtMessage.ScrollToCaret();}));}/// <summary>/// 一行一行的更新数据库【耗时任务】/// </summary>/// <param name="dtImport"></param>private Task<int> UpdateDatabase(DataTable dtImport){int rowCount = dtImport.Rows.Count;progressBarImport.Maximum = rowCount;progressBarImport.Value = 0;//进度条清零DisplayMessage($"开始导入模组极柱数据,准备导入数据条数【{rowCount}】......");Task<int> task = Task.Run<int>(() =>{int cnt = 0;for (int i = 0; i < rowCount; i++){//更新进度条this.BeginInvoke(new Action(() =>{if (this.IsHandleCreated){progressBarImport.Value++;}}));string ModuleBarcode = Convert.ToString(dtImport.Rows[i]["模组条码"]);string PoleCode = Convert.ToString(dtImport.Rows[i]["极性编码"]);string ModuleCategory = Convert.ToString(dtImport.Rows[i]["模组类型"]);if (string.IsNullOrWhiteSpace(ModuleBarcode)){continue;}try{List<string> sqlCollection = new List<string>();List<Dictionary<string, object>> dictCollection = new List<Dictionary<string, object>>();sqlCollection.Add("delete from module_pole where ModuleBarcode=@ModuleBarcode");sqlCollection.Add("insert into module_pole (ModuleBarcode,ModuleCategory,PoleCode,ProcessEndTime) values (@ModuleBarcode,@ModuleCategory,@PoleCode,@ProcessEndTime)");dictCollection.Add(new Dictionary<string, object>() { { "ModuleBarcode", ModuleBarcode } });dictCollection.Add(new Dictionary<string, object>() { { "ModuleBarcode", ModuleBarcode },{ "ModuleCategory", ModuleCategory }, { "PoleCode", PoleCode }, { "ProcessEndTime", DateTime.Now } });ExecuteTransaction(sqlCollection, dictCollection);DisplayMessage($"导入模组极柱数据成功,模组条码【{ModuleBarcode}】");cnt++;}catch (Exception ex){DisplayMessage($"导入模组极柱数据出错【{ex.Message}】,模组条码【{ModuleBarcode}】");}}return cnt;});return task;}/// <summary>/// 这里执行事务/// </summary>/// <param name="sqlCollection"></param>/// <param name="dictCollection"></param>private void ExecuteTransaction(List<string> sqlCollection, List<Dictionary<string, object>> dictCollection) {Random random = new Random((int)DateTime.Now.Ticks);int millisecondsTimeout = random.Next(100, 300);System.Threading.Thread.Sleep(millisecondsTimeout);DisplayMessage($"执行数据库事务,耗时【{millisecondsTimeout}】ms");}private async void btnSave_Click(object sender, EventArgs e){OpenFileDialog openFileDialog = new OpenFileDialog();openFileDialog.Filter = "Excel文件|*.xls;*.xlsx";DialogResult dialog = openFileDialog.ShowDialog();if (dialog != DialogResult.OK){return;}string fileName = openFileDialog.FileName;try{DataTable dtImport = NpoiExcelOperateUtil.ExcelToTable(fileName);if (!dtImport.Columns.Contains("序号")){MessageBox.Show($"必须包含列【序号】,请检查excel格式.路径\n【{fileName}】", "提示");return;}if (!dtImport.Columns.Contains("模组条码")){MessageBox.Show($"必须包含列【模组条码】,请检查excel格式.路径\n【{fileName}】", "提示");return;}if (!dtImport.Columns.Contains("极性编码")){MessageBox.Show($"必须包含列【极性编码】,请检查excel格式.路径\n【{fileName}】", "提示");return;}if (!dtImport.Columns.Contains("模组类型")){MessageBox.Show($"必须包含列【模组类型】,请检查excel格式.路径\n【{fileName}】", "提示");return;}//绑定网格数据dgvData.DataSource = dtImport;int rowCount = dtImport.Rows.Count;if (rowCount < 1){MessageBox.Show($"Excel不存在有效的上传数据配置行.路径\n【{fileName}】", "提示");return;}Task<int> task = UpdateDatabase(dtImport);await task;DisplayMessage($"导入模组极柱数据成功,实际导入数据条数【{task.Result}】......");}catch (Exception ex){MessageBox.Show($"读取excel出现异常,请检查是否是标准的Excel文件.【{ex.Message}】路径\n【{fileName}】", "出错");return;}}private void btnExport_Click(object sender, EventArgs e){SaveFileDialog saveFileDialog = new SaveFileDialog();saveFileDialog.FileName = DateTime.Now.ToString("yyyy-MM-dd-HHmmss") + ".xls";saveFileDialog.Filter = "Excel文件|*.xls;*.xlsx";DialogResult dialog = saveFileDialog.ShowDialog();if (dialog != DialogResult.OK){return;}string fileName = saveFileDialog.FileName;DataTable dt = new DataTable("TableToExcel");dt.Columns.Add("序号", typeof(int));dt.Columns.Add("模组条码", typeof(string));dt.Columns.Add("极性编码", typeof(string));dt.Columns.Add("模组类型", typeof(string));//最多保留3行for (int i = 0; i < Math.Min(dgvData.Rows.Count, 3); i++){dt.Rows.Add(dgvData[0, i].Value, dgvData[1, i].Value, dgvData[2, i].Value, dgvData[3, i].Value);}try{NpoiExcelOperateUtil.TableToExcel(dt, fileName);MessageBox.Show($"保存示例模板成功,保存数据条数【{dt.Rows.Count}】.\n路径【{fileName}】", "提示");}catch (Exception ex){MessageBox.Show($"保存示例模板出现异常,请检查是否是标准的Excel文件.【{ex.Message}】路径\n【{fileName}】", "出错");return;}}}
}

程序运行如图:

 

 

 

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

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

相关文章

数组slice、splice字符串substr、split

一、定义 这篇文章主要对数组操作的两种方法进行介绍和使用&#xff0c;包括&#xff1a;slice、splice。对字符串操作的两种方法进行介绍和使用&#xff0c;包括&#xff1a;substr、split (一)、数组 slice:可以操作的数据类型有&#xff1a;数组字符串 splice:数组 操作数组…

小程序wx:else提示 Bad attr `wx

问题&#xff1a;以下wx:for里的wx:if &#xff0c; wx:else 会报这个错&#xff1a;Bad attr wx <scroll-view class"scroll1" scroll-x enable-flex"true"><view wx:if"{{playlist.length>0}}" class"item" wx:for"…

SonarQube安装与Java、PHP代码质量分析扫描

文章目录 1、下载安装1.1、SonarQube下载1.2、SonarQube安装1.3、SonarQube中文汉化1.4、SonarScanner扫描器 2、扫描项目2.1、java代码扫描2.2、php代码扫描 1、下载安装 SonarQube负责存储代码数据、收集数据、分析代码和生成报告等。 1.1、SonarQube下载 下载地址&#x…

MPP架构和Hadoop架构的区别

1. 架构的介绍 mpp架构是将许多数据库通过网络连接起来&#xff0c;相当于将一个个垂直系统横向连接&#xff0c;形成一个统一对外的服务的分布式数据库系统。每个节点由一个单机数据库系统独立管理和操作该物理机上的的所有资源&#xff08;CPU&#xff0c;内存等&#xff09…

【QT】 QT开发PDF阅读器

很高兴在雪易的CSDN遇见你 &#xff0c;给你糖糖 欢迎大家加入雪易社区-CSDN社区云 前言 本文分享QT开发PDF阅读器技术&#xff0c;希望对各位小伙伴有所帮助&#xff01; 感谢各位小伙伴的点赞关注&#xff0c;小易会继续努力分享&#xff0c;一起进步&#xff01; 你的点…

使用chatGPT-4 畅聊量子物理学

与chatGPT深入研究起源、基本概念&#xff0c;以及海森堡、德布罗意、薛定谔、玻尔、爱因斯坦和狄拉克如何得出他们的想法和方程。 1965 年&#xff0c;费曼&#xff08;左&#xff09;与朱利安施温格&#xff08;未显示&#xff09;和朝永信一郎&#xff08;右&#xff09;分享…

数据分析-python学习 (1)numpy相关

内容为&#xff1a;https://juejin.cn/book/7240731597035864121的学习笔记 导包 import numpy as np numpy数组创建 创建全0数组&#xff0c;正态分布、随机数组等就不说了&#xff0c;提供了相应的方法通过已有数据创建有两种 arr1np.array([1,2,3,4,5]) 或者datanp.loadt…

当我准备出门时,发现了......我可以用Python实现12306自动买票

前言 不知道大家有没有之前碰到这样的情况&#xff0c;打算去某一个地方当你规划好了时间准备去买票的时候&#xff0c;你想要的那一列往往没有你想要的票了&#xff0c;尤其是国庆七天假和春节半月假&#xff0c;有时候甚至买不到规定计划时间内的票&#xff0c;真的是太烦躁…

列队 Queue 接口概述

在Java中&#xff0c;Queue&#xff08;队列&#xff09;是一种基本的数据结构&#xff0c;用于按照先进先出&#xff08;FIFO&#xff09;的顺序存储元素。Java提供了多种实现Queue接口的类&#xff0c;以下是几种常见的实现方式&#xff1a; LinkedList&#xff1a;LinkedLis…

RISC-V公测平台发布 · 使用YCSB测试SG2042上的MySQL性能

实验介绍&#xff1a; YCSB&#xff08;全称为Yahoo! Cloud Serving Benchmark&#xff09;&#xff0c;该性能测试工具由Java语言编写&#xff08;在之前的MC文章中也提到过这个&#xff0c;如果没看过的读者可以去看看之前MC那一期&#xff09;&#xff0c;主要用于云端或者…

【位操作符的几种题型】

位操作符的几种题型 目录 题型一&#xff1a;寻找“单身狗”。 题型二&#xff1a;计算一个数在二进制中1的个数 题型三&#xff1a;不允许创建临时变量&#xff0c;交换两个整数的内容 题型一&#xff1a;寻找“单身狗”。 1.1题目解析 在一个整型数组中&#xff0c;只有…

SUB-1G SOC芯片DP4306F 32 位 ARM Cortex-M0+内核替代CMT2380F32

DP4306F是一款高性能低功耗的单片集成收发机&#xff0c;集成MO核MCU&#xff0c;工作频率可覆盖200MHiz^ 1000MHz。 支持230/408/433/470/868/915频段。该芯片集成了射频接收器、射频发射器、频率综合器、GFSK调制器、GFSK解调器等功能模块。通过SPI接口可以对输出功率、频道选…

element-plus的日期选择器限定选择范围

目录 前言一、最近30天总结 前言 提示&#xff1a;这里可以添加本文要记录的大概内容&#xff1a; element-plus的日期选择器限定选择范围&#xff0c;由于数据的获取范围限定&#xff0c;需要前端处理一下日期的选择范围 提示&#xff1a;以下是本篇文章正文内容&#xff0c…

软考高级之系统架构师之数据通信与计算机网络

概念 OSPF 在划分区域之后&#xff0c;OSPF网络中的非主干区域中的路由器对于到外部网络的路由&#xff0c;一定要通过ABR(区域边界路由器)来转发&#xff0c;既然如此&#xff0c;对于区域内的路由器来说&#xff0c;就没有必要知道通往外部网络的详细路由&#xff0c;只要由…

【计算机网络】概述及数据链路层

每一层只依赖于下一层所提供的服务&#xff0c;使得各层之间相互独立、灵活性好&#xff0c;已于实现和维护&#xff0c;并能促进标准化工作。 应用层&#xff1a;通过应用进程间的交互完成特定的网络应用&#xff0c;HTTP、FTP、DNS&#xff0c;应用层交互的数据单元被称为报…

音频光耦合器

音频光耦合器是一种能够将电信号转换为光信号并进行传输的设备。它通常由发光二极管&#xff08;LED&#xff09;和光敏电阻&#xff08;光电二极管或光敏电阻器&#xff09;组成。 在音频光耦合器中&#xff0c;音频信号经过放大和调节后&#xff0c;被转换为电流信号&#xf…

【密码学】六、公钥密码

公钥密码 1、概述1.1设计要求1.2单向函数和单向陷门函数 2、RSA公钥密码体制2.1加解密2.2安全性分析 3、ElGamal公钥密码体制3.1加解密算法3.2安全性分析 4、椭圆曲线4.1椭圆曲线上的运算4.2ECC 5、SM2公钥密码体制5.1参数选取5.2密钥派生函数5.3加解密过程5.3.1初始化5.3.2加密…

ThinkPHP6企业OA办公系统

有需要请加文章底部Q哦 可远程调试 ThinkPHP6企业OA办公系统 一 介绍 勾股OA基于ThinkPHP6开发&#xff0c;前端Layui&#xff0c;数据库mysql&#xff0c;是一款实用的企业办公系统。可多角色登录&#xff0c;集成了系统设置、人事管理、消息管理、审批管理、日常办公、客户…

pytest 用例运行方式

一、命令行方式运行 执行某个目录下所有的用例&#xff0c;符合规范的所有用例 进入到对应的目录,直接执行pytest; 例如需要执行testcases 下的所有用例; 可以进入testcases 目录; 然后执行pytest 进入对应目录的上级目录,执行pytest 目录名称/ ; ; 例如需要执行testcases 下…

【Android】在Windows11系统上运行VisualStudioEmulator forAndroid

这是一个x86架构处理器的安卓模拟器&#xff0c; 在Visual Studio开发工具上用的&#xff0c;也是运行在Hyper-V虚拟机上的&#xff0c;相比其它的模拟器的性能好&#xff0c;占用磁盘空间小&#xff0c;操作简洁方便&#xff0c;非常适合开发人员调试安卓手机模拟。 安装 首…