Java-day18(网络编程)

news2024/11/19 19:41:43

网络编程

1.概述

  • Java提供跨平台的网络类库,可以实现无痛的网络连接,程序员面对的是一个统一的网络编程环境

  • 网络编程的目的:直接或间接地通过网络协议与其他计算机进行通信

  • 网络编程的两个主要问题:

    • 1.如何准确定位网络上一台或多台计算机

      • 通信双方地址

      • 一定的规则
        TCP/IP参考模型(现实中运用)
        OSI参考模型(太过理想化,未广泛推广)

    • 2.找到主机后如何可靠高效地进行数据传输

      • TCP 可靠性高,每次传输数据多
      • UDP 速度快,可靠性低

2.要素

  • IP和端口号

    • IP: 唯一标识Internet上的计算机(回环:127.0.0.1;主机:localhost

    • 端口号: 标识正在计算机上运行的进程(程序);不同的进程有不同的端口号;端口号为0~2^16-1,0~1023被预先定义,1024~65535支持用户定义(默认数据库MySQL:3306,http:80)

    • 端口号与IP地址的组合得出一个网络套接字
      在这里插入图片描述

  • 网络通信协议

    • 计算机网络中实现通信必须有的一些约定,及网络通信协议

    • 计算机各层之间互不影响

    • TCP/IP协议簇:包含多个具有不同功能且相互关联的一组协议(以传输控制协议(TCP)和网络互联协议(IP)为主)

3.InetAddress类

InetAddress:位于java.net

  1. InetAddress用来代表IP地址,一个InetAddress的对象就代表一个IP地址
  2. 创建InetAddress类对象:getByName(String host)
  3. 获取IP地址:getHostAddress() 获取IP地址对应的域名:getHostName()

例:

import java.net.InetAddress;
import java.net.UnknownHostException;

public class Test1 {
	public static void main(String[] args) throws Exception {                         
		//创建InetAddress对象
		InetAddress inet = InetAddress.getByName("www.bilibili.com");		
		//inet = InetAddress.getByName("61.240.206.10");//也可以用IP地址
		System.out.println(inet);//www.bilibili.com/112.83.140.13
		
		System.out.println(inet.getHostAddress());
		System.out.println(inet.getHostName());
		
		System.out.println();
		//获取本机的用户名与IP
		InetAddress inet1 = InetAddress.getLocalHost();
		System.out.println(inet1);
		System.out.println(inet1.getHostAddress());
		System.out.println(inet1.getHostName());
	}

}

4.TCP网络通信

传输控制协议要点
  • 使用TCP协议前,须先建立TCP连接,形成传输数据通道
  • 传输前,采用“三次握手”方式,可靠
  • TCP协议进行通信的两个应用进程:客户端,服务端
  • 在连接中可进行大数据量的传输
  • 传输完成,需释放已建立的连接,效率低
    例1
package com.end.java;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.UnknownHostException;

import org.junit.Test;

//客户端给服务器发送信息,服务端输送此信息到控制台
public class TestTCP1 {
	@Test
	//客户端
	public void client() {
		Socket socket = null;
		OutputStream os = null;
		try {
			//1.创建一个Socket的对象,通过构造器指明服务器的IP地址及接收端口
			socket = new Socket(InetAddress.getByName("127.0.0.1"),9090);
			//2.getOutputStream(),发送数据,方法返回OutputStream的对象
			os = socket.getOutputStream();
			//3.具体的输出过程
			os.write("我是客户端,请多多关照!".getBytes());
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			//4.关闭相应的流与Socket
			if(os != null) {
				try {
					os.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(socket != null) {
				try {
					socket.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}
	
	@Test
	//服务端
	public void server() {
		ServerSocket ss = null;
		Socket s = null;
		InputStream is = null;
		try {
			//1.创建ServerSocket的对象,通过构造器指明自身的接收端口
			ss = new ServerSocket(9090);
			//2.调用accept()方法,返回Socket的对象()
			s = ss.accept();
			//3.调用Socket的getInputStream(): 接收从客户端发送过来的数据输入流
			is = s.getInputStream();
			//4.对获取的输入流进行操作
			byte[] b = new byte[20];
			int len;
			while((len = is.read(b)) != -1) {
				String str = new String(b,0,len);
				System.out.print(str);
			}
			System.out.println("收到来自" + s.getInetAddress().getHostName() + "的消息");
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			//5.关闭相应的流与Socket
			if(is != null) {
				try {
					is.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(s != null) {
				try {
					s.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(ss != null) {
				try {
					ss.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}
}

例2

package com.end.java;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.UnknownHostException;

import org.junit.Test;

//客户端给服务器发送信息,服务端输送此信息到控制台,同向客户端发送“收到信息”
public class TestTCP2 {
	@Test
	//客户端
	public void client() {
		Socket socket = null;
		OutputStream os = null;
		InputStream is = null;
		try {
			socket = new Socket(InetAddress.getByName("127.0.0.1"),8081);
			os = socket.getOutputStream();
			os.write("我是客户端".getBytes());
			//shutdownOutput():告诉服务端消息已发送完毕
			socket.shutdownOutput();
			
			is = socket.getInputStream();
			byte[] b = new byte[20];
			int len;
			while((len = is.read(b)) != -1) {
				String str = new String(b,0,len);
				System.out.print(str);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}finally {
			if(is != null) {
				try {
					is.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(os != null) {
				try {
					os.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(socket != null) {
				try {
					socket.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}
	@Test
	//服务端
	public void server() {
		ServerSocket ss = null;
		Socket s = null;
		InputStream is = null;
		OutputStream os = null;
		try {
			ss = new ServerSocket(8081);
			s = ss.accept();
			is = s.getInputStream();
			byte[] b = new byte[20];
			int len;
			while((len = is.read(b)) != -1) {
				String str = new String(b,0,len);
				System.out.print(str);
			}
			os = s.getOutputStream();
			os.write("我已收到".getBytes());
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			if(os != null) {
				try {
					os.close();
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
			if(is != null) {
				try {
					is.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(s != null) {
				try {
					s.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if(ss != null) {
				try {
					ss.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}
}

例3

package com.end.java; 

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;

import org.junit.Test;

//从客户端发送给服务器,服务端保存到本地,并返回“发送成功”给客户端,并关闭相应的连接
//处理异常时,必须使用try-catch-finally!本例仅为书写方便
public class TestTCP3 {
	@Test
	public void client() throws Exception{
	//客户端
	//1.创建对象
	Socket socket = new Socket(InetAddress.getByName("127.0.0.1"),9898);
	//2.本地获取文件发送给服务端
	OutputStream os = socket.getOutputStream();
	FileInputStream fis = new FileInputStream(new File("1.webp"));
	byte[] b = new byte[20];
	int len;
	while((len = fis.read(b)) != -1) {
		os.write(b,0,len);
	}
	socket.shutdownOutput();
	//3.读取服务端发送的数据
	InputStream is = socket.getInputStream();
	byte[] b1 = new byte[1024];
	int len1;
	while((len1 = is.read(b1)) != -1) {
		String str = new String(b1,0,len1);
		System.out.print(str);
	}
	//4.关闭相应的流
	os.close();
	is.close();
	fis.close();
	socket.close();
	}
	@Test
	//服务器
	public void server() throws Exception{
		//1.创建对象
		ServerSocket ss = new ServerSocket(9898);
		//2.接受/读取客户端请求或数据,保存到本地
		Socket s = ss.accept();
		
		InputStream is = s.getInputStream();
		FileOutputStream fos = new FileOutputStream(new File("2.webp"));
		byte[] b = new byte[1024];
		int len;
		while((len = is.read(b)) != -1) {
			fos.write(b,0,len);
		}
		System.out.println("收到来自" + s.getInetAddress().getHostName() + "的文件");
		//3.向客户端发送信息
		OutputStream os = s.getOutputStream();
		os.write("你发送的图片已接收成功".getBytes());
		//4.关闭相应的流
		os.close();
		is.close();
		fos.close();
		ss.close();
		s.close();
	}
}

5.UDP网络通信

用户数据报协议要点
  • 将数据,源,目的地址封装成数据包,不需要建立连接
  • 每个数据报的大小限制在64K
  • 因无需连接,故不可靠
  • 发送数据结束时无需释放资源,速度快
package com.end.java;  

import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException;
import java.net.UnknownHostException;

import org.junit.Test;

//发送端给服务器发送信息,服务端输送此信息到控制台
//DatagramSocket(数据报的发送和接收) 和 DatagramPacket(对象封装UDP数据报中数据)实现基于UDP协议网络程序
public class TestUDP {
	@Test
	//发送端
	public void send() {
		DatagramSocket ds= null;
		try {
			ds = new DatagramSocket();
			byte[] b = "hello,world!".getBytes();
			//创建数据报,每个数据报不能大于64K,都记录着数据,发送端IP,端口,及接收端IP,端口
			DatagramPacket pack = new DatagramPacket(b,0,b.length,InetAddress.getByName("127.0.0.1"),9090);
			ds.send(pack);
		} catch (SocketException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (UnknownHostException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			if(ds != null) {
				ds.close();
			}
			
		}
		
	}
	
	@Test
	//接收端
	public void rceive() {
		 DatagramSocket ds = null;
		try {
			ds = new DatagramSocket(9090);
			 byte[] b = new byte[1024];
			 DatagramPacket pack = new DatagramPacket(b,0,b.length);
			 ds.receive(pack);
			 
			 String str = new String(pack.getData(),0,pack.getLength());
			 System.out.println(str);
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			if(ds != null) {
				 ds.close();
			}
		}
	}
}
练习
package com.end.java;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Scanner;

import org.junit.Test;

//TCP编程练习:客户端给服务端发送文本,服务端将文本转成大写返回给客户端
public class TCPTest {
	@Test
	public void client() {
		Socket socket = null;
		OutputStream os = null;
		Scanner scanner = null;
		//4.接收来自服务端的数据
		InputStream is = null;
		try {
			socket = new Socket(InetAddress.getByName("127.0.0.1"),9090);
			
			os = socket.getOutputStream();
			
			System.out.println("请输入多个字符: ");
			scanner = new Scanner(System.in);
			String str = scanner.next();
			os.write(str.getBytes());
			socket.shutdownOutput();
			is = socket.getInputStream();
			byte[] b = new byte[1024];
			int len;
			while((len = is.read(b)) != -1) {
				String str1 = new String(b,0,len);
				System.out.println(str1);
			}
		} catch (UnknownHostException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			//5.关闭流
			if(is != null) {
				try {
					is.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			
			if(scanner != null) {
				scanner.close();
			}
			
			if(os != null) {
				try {
					os.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			
			if(socket != null) {
				try {
					socket.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			
		}
	}
	@Test
	public void server() {
		
		ServerSocket ss = null;
		Socket s = null;
		
		InputStream is = null;
		
		OutputStream os = null;
		try {
			ss = new ServerSocket(9090);
			s = ss.accept();
			//3.接收客户端信息
			is = s.getInputStream();
			byte[] b = new byte[10];
			int len;
			String str = new String();
			while((len = is.read(b)) != -1) {
				String str1 = new String(b,0,len);
				str += str1;
			}
			String strUpperCase = str.toUpperCase();
			//返回客户端信息
			os = s.getOutputStream();
			os.write(strUpperCase.getBytes());
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			//关闭流
			if(os != null) {
				try {
					os.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			if(is != null) {
				try {
					is.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			if(s != null) {
				try {
					s.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			if(ss != null) {
				try {
					ss.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			
		}
		
	}
}

6.URL编程

  • 统一资源定位符,一个URL的对象,就对应着互联网上的一个资源
  • 可以通过URL的对象调用相应的方法,将此资源读取(“下载”)
  • 组成:<传输协议>://<主机号>:<端口号>/<文件名> 如:http://127.0.0.1:8080/index.html
    在这里插入图片描述

openStream()是将服务端的资源读取进来,如果希望输出数据,那就需要使用URLConnection
当需要与URL建立连接时,首先需要对象URL通过调用openConnection()生成的URLConnection对象,连接失败,将产生IOException异常

package com.end.java;      

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

//URL编程
public class TestURL {
	public static void main(String[] args) throws Exception {
		//1.创建URL对象
		URL url = new URL("http://127.0.0.1:8080//examples/index.html?about");
		
//		//获取URL的协议名
//		System.out.println("协议名:" + url.getProtocol());
//		//获取URL的主机名
//		System.out.println("主机名:" + url.getHost());
//		//获取URL的端口号
//		System.out.println("端口号:" + url.getPort());
//		//获取URL的文件路径
//		System.out.println("文件路径:" + url.getPath());
//		//获取URL的文件名
//		System.out.println("文件名:" + url.getFile());
//		//获取URL的相对路径
//		System.out.println("文件相对路径:" + url.getRef());
//		//获取URL的查询名
//		System.out.println("查询名:" + url.getQuery());
		
		//将服务端的资源读取进来
		InputStream is = url.openStream();
		byte[] b = new byte[20];
		int len;
		while((len = is.read(b)) != -1) {
			String str = new String(b,0,len);
			System.out.println(str);
		}
		is.close();
		
		//既有数据的输入,又有数据的输出,考虑使用URLConnection
		URLConnection urlConn = url.openConnection();
		InputStream is1 = urlConn.getInputStream();
		FileOutputStream fos = new FileOutputStream(new File("abc.txt"));
		byte[] b1 = new byte[20];
		int len1;
		while((len1 = is1.read(b1)) != -1) {
			fos.write(b1,0,len1);
		}
		fos.close();
		is.close();
	}
}

感谢大家的支持,关注,评论,点赞!
参考资料:
尚硅谷宋红康20天搞定Java基础下部

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

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

相关文章

MybatisPlus自定义SQL用法

1、功能概述&#xff1f; MybatisPlus框架提供了BaseMapper接口供我们使用&#xff0c;大大的方便了我们的基础开发&#xff0c;但是BaseMapper中提供的方法很多情况下不够用&#xff0c;这个时候我们依旧需要自定义SQL,也就是跟mybatis的用法相同&#xff0c;自定义xml映射文…

VS CODE中的筛选器如何打开?

最近更新了vscode1.82版本&#xff0c;发现在git管理界面有一个“筛选器”功能&#xff0c;十分好用&#xff0c;后来关掉了&#xff0c;找了好久都没有找到办法打开这个筛选器功能&#xff0c;今天无意中不知道按到了哪个快捷键&#xff0c;打开了&#xff0c;就是下图这个&am…

矿山无人驾驶的“奇点时刻”

三年前&#xff0c;矿山无人驾驶赛道还处于整个自动驾驶产业“鄙视链的最底端”&#xff1b;但三年后的今天&#xff0c;这个赛道&#xff0c;却成了无人驾驶&#xff08;L4&#xff09;商业化落地难得的亮点——当前&#xff0c;头部的几家矿山无人驾驶公司都已实现去安全员运…

C#WPF通知更改公共类使用实例

本文实例演示C#WPF通知更改公共类使用实例,通过使用公共类简化了代码。其中的代码中也实现了命令的用法。 定义: INotifyPropertyChanged 接口:用于向客户端(通常是执行绑定的客户端)发出某一属性值已更改的通知。 首先创建WPF项目,添加按钮和文本控件 <Window x:C…

05-Zookeeper典型使用场景实战

上一篇&#xff1a;04-Zookeeper集群详解 1. Zookeeper 分布式锁加锁原理 如上实现方式在并发问题比较严重的情况下&#xff0c;性能会下降的比较厉害&#xff0c;主要原因是&#xff0c;所有的连接都在对同一个节点进行监听&#xff0c;当服务器检测到删除事件时&#xff0c…

平面设计cdr和ai有什么区别,哪个好用?2023年全新功能解析

平面设计cdr和ai有什么区别 我们做设计的同学经常会把cdr和ai来做比较。要知道&#xff0c;cdr和ai软件都是可以制作专业的矢量图。二者在功能上各有千秋&#xff0c;在绘图领域中也是平分秋色&#xff0c;绝大多数的效果&#xff0c;谁都能完成。但是对于操作方面&#xff0c;…

vue3 - 使用 xlsx 库将数据导出到 Excel 文件

GitHub Demo 地址 在线预览 xlsx是由SheetJS开发的一个处理excel文件的JavaScript库。它可以读取、编写和操作 Excel 文件 安装xlsx npm install xlsx --save实现一个通过的数据导出工具类 import * as XLSX from xlsx/*** description: 导出excel* param {any} dataList* p…

西域商品详情数据接口

西域平台是西域智慧供应链&#xff08;上海&#xff09;股份公司旗下的MRO工业品B2B电商采购平台。 西域平台成立于2002年&#xff0c;于2009年进入MRO工业品B2B电商行业。经过十多年深耕与探索&#xff0c;西域平台已为包括80%央国企及60%的全球500强企业在内的3万余家国内外…

Qt5开发及实例V2.0-第十章Qt网络与通信

Qt5开发及实例V2.0-第十章Qt网络与通信 第10章 Qt 5网络与通信10.1 获取本机网络信息10.2 基于UDP的网络广播程序10.2.1 UDP协议工作原理10.2.2 UDP 编程模型10.2.3 【实例】&#xff1a;UDP服务器编程10.2.4 【实例】&#xff1a;UDP客户端编程 10.3 基于TCP的网络聊天室程序1…

力扣(LeetCode)1333. 餐厅过滤器(C++)

优先队列 请读者读题&#xff0c;应该会发现两个重点&#xff1a;过滤器和排序。大家有没有发现这个效果&#xff0c;有点像xx点评: 大家选店一般在口味/距离/价格能接受的前提下&#xff0c;选评分最高的那家店hh&#xff0c;这就是过滤器的效果。排序是说&#xff0c;对满足…

【SQL】统一训练平台数据库实践--20230927

储存过程vlookup_peopledata_csodtraining 默认导出用今天批次的数据进行join on&#xff0c;先删除过渡表的资料&#xff0c;再将查询结果放在过渡表中。 BEGINDECLARE startdate varchar(50);SET startdate date_format(NOW(),%Y%m%d);DELETE FROM season.csod_data2;INSE…

50KW可编程水冷负载箱的工作原理

可编程水冷负载箱内部配备了水冷系统&#xff0c;包括水泵、水冷片和水冷风扇。水泵将冷却液&#xff08;通常是水&#xff09;循环输送到负载器件上&#xff0c;通过水冷片和水冷风扇将热量散发出去&#xff0c;以保持负载器件的温度在可控范围内。通过编程控制负载器件的工作…

【钻石OA】1区SCI,无需版面费,仅2个月录用!

重 点 本期推荐 本期小编给大家推荐的是无需版面费的1区农林科学类SCI&#xff08;钻石OA&#xff09;。 目前进展顺利&#xff0c;在WOS数据库中各项指标表现良好&#xff0c;且无预警记录。 领域符合录用率高&#xff0c;1区SCI最快2个月录用&#xff01; 期刊官网系统提…

uni-app 之 短信验证码登录

uni-app 之 短信验证码登录 image.png image.png <template><view style"width: 100%; display: flex; flex-direction:column; align-items:center;"><view style"width: 300px; margin-top: 100px;"><!-- // --><!-- 1&#…

今天给大家介绍一篇基于java的养老院管理系统的设计与实现

项目描述 临近学期结束&#xff0c;还是毕业设计&#xff0c;你还在做java程序网络编程&#xff0c;期末作业&#xff0c;老师的作业要求觉得大了吗?不知道毕业设计该怎么办?网页功能的数量是否太多?没有合适的类型或系统?等等。今天给大家介绍一篇基于java的养老院管理系…

服务网关Gateway_微服务中的应用

没有服务网关 问题&#xff1a; 地址太多安全性管理问题 为什么要使用服务网关 网关是微服务架构中不可或缺的部分。使用网关后&#xff0c;客户端和微服务之间的网络结构如下。 注意&#xff1a; 网关统一向外部系统&#xff08;如访问者、服务&#xff09;提供REST API。在Sp…

Android 编译插桩操纵字节码

本文讲解如何编译插桩操纵字节码。 就使用 ASM 来实现简单的编译插桩效果&#xff0c;通过插桩实现在每一个 Activity 打开时输出相应的 log 日志。实现思路 过程主要包含两步&#xff1a; 1、遍历项目中所有的 .class 文件​ 如何找到项目中编译生成的所有 .class 文件&#…

Win/Mac版Scitools Understand教育版申请

这里写目录标题 前言教育版申请流程教育账号申请 前言 上篇文章为大家介绍了Scitools Understand软件&#xff0c;通过领取的反馈来看有很多朋友都想用这个软件&#xff0c;但是我的网盘里只存了windows的pojie版&#xff0c;没有mac版的&#xff0c;我没有去网上找相关的资源…

支持笔记本电脑直插直充,TOWE 65W智能快充PDU超级插座

电源插排在我们的生活中是必不可少的电器配件。今天&#xff0c;我们日常生活中所使用的电子设备越来越多&#xff0c;无论是手机、平板、笔记本电脑还是各种家用电器&#xff0c;都需要电源来驱动。虽然相对于其他电器来说&#xff0c;插排结构比较简单&#xff0c;但现代家庭…

LabVIEW开发具有栅极感应漏极电流的电荷泵

LabVIEW开发具有栅极感应漏极电流的电荷泵 由操作压力引起的接口陷阱一直是一个长期问题&#xff0c;因为它们会降低栅极电介质的质量&#xff0c;引起器件参数的不必要变化&#xff0c;例如导通状态电流、亚阈值摆幅、阈值电压和跨导。因此&#xff0c;表征界面疏水阀对于确保…