16-NIO(Java non-blocking)

IO:

                     

NIO:

  • 简介:

java.nio全称Java non-blocking IO或Java New IO,是从jdk1.4 开始引入的一套新的IO api(New IO),为所有的原始类型(boolean类型除外)提供缓存支持的数据容器,使用它可以 提供非阻塞式的高伸缩性网络

IO操作的模式:

<1> PIO(Programming Input Ouput): 所有的IO操作由CPU处理,CPU占用率比较高

<2> DMA(Direct Memory Access):CPU把IO操作控制权交给DMA控制器,只能以固定的方式读写,CPU空闲做其他工
作。

<3> 通道方式(Channel):能执行有限通道指令的IO控制器,代替CPU管理控制外设。通道有自己的指令系统,是一个协处理器,具有更强的独立处理数据输入和输出的能力。

Java NIO 由以下几个核心部分组成:

Buffer:缓冲区

Channel:通道

Selector:选择器(轮询器)

Buffer 的使用

Java NIO中的Buffer用于和NIO通道进行交互。如你所知,数据是从通道读入缓冲区,从缓冲区写入到通道中的。缓冲区本质上是一块可以写入数据,然后可以从中读取数据的内存。这块内存被包装成NIO Buffer对象,并提供了一组方法,用来方便的访问该块内存。

Java NIO里关键的Buffer实现:

ByteBuffer,CharBuffer,DoubleBuffer,FloatBuffer,IntBuffer,LongBuffer,ShortBuffer

  • Buffer的基本用法:  

 使用Buffer读写数据一般遵循以下四个步骤:
1. 创建缓冲区,写入数据到Buffer
2. 调flip()方法
3. 从Buffer中读取数据
4. 调用clear()方法或者compact()方法

当向buffer写入数据时,buffer会记录下写了多少数据。一旦要读取数据,需要通过flip()方法将Buffer从写模式切换到读模式。在读模式下,可以读取之前写入到buffer的所有数据。

一旦读完了所有的数据,就需要清空缓冲区,让它可以再次被写入。有两种方式能清空缓冲区:调用clear()或compact()方法。clear()方法会清空整个缓冲区。compact()方法只会清除已经读过的数据。任何未读的数据都被移到缓冲区的起始处,新写入的数据将放到缓冲区未读数据的后面。

import java.nio.ByteBuffer;
public class Demo7 {
	public static void main(String[] args) {
		//1.创建ByteBuffer
		ByteBuffer buffer = ByteBuffer.allocate(1024);//1kb
		//2.向缓冲区中写入数据
		String data = "helloworld,楠哥哥最帅最棒!";
		buffer.put(data.getBytes());//utf-8
		//3.设置缓冲区为读模式
		buffer.flip();
		//4.读取
//		byte d = buffer.get();//读一个字节
//		System.out.println((char)d);
		byte[] data2 = new byte[buffer.limit()];
		buffer.get(data2);
		System.out.println(new String(data2));
	}
}

 运行结果:

  • Buffer capacityposition limit

 缓冲区本质上是一块可以写入数据,然后可以从中读取数据的内存。这块内存被包装成NIO Buffer对象,并提供了一组方法,用来方便的访问该块内存。

为了理解Buffer的工作原理,需要熟悉它的三个属性:capacity,position,limit

position和limit的含义取决于Buffer处在读模式还是写模式。不管Buffer处在什么模式,capacity的含义总是一样的。

capacity:作为一个内存块,Buffer有一个固定的大小值,也叫“capacity”.你只能往里写capacity个byte、long,char等类型。一旦Buffer满了,需要将其清空(通过读数据或者清除数据)才能继续写数据往里写数据。

position:当你写数据到Buffer中时,position表示当前的位置。初始的position值为0.当一个byte、long等数据写到Buffer后,position会向前移动到下一个可插入数据的Buffer单元。position最大可为capacity – 1.
当读取数据时,也是从某个特定位置读。当将Buffer从写模式切换到读模式,position会被重置为0. 当从Buffer的position处读取数据时,position向前移动到下一个可读的位置。

limit:在写模式下,Buffer的limit表示你最多能往Buffer里写多少数据。 写模式下,limit等于Buffer的capacity。当切换Buffer到读模式时, limit表示你最多能读到多少数据。因此,当切换Buffer到读模式时,limit会被设置成写模式下的position值。换句话说,你能读到之前写入的所有数据(limit被设置成已写数据的数量,这个值在写模式下就是position)

  • Buffer的分配:
/*
 * 要想获得一个Buffer对象首先要进行分配。每一个Buffer类都有一个allocate方法。
 * 下面是一个分配1024字节capacity的ByteBuffer的例子。
 */
//创建间接缓冲区,大小为1024个字节
ByteBuffer buf = ByteBuffer.allocate(1024);
//直接缓冲区
ByteBuffer buf2=ByteBuffer.allocateDirect(1024);

间接缓冲区:在堆中开辟,易于管理,垃圾回收器可以回收,空间有限,读写文件速度较慢。

直接缓冲区:不在堆中,物理内存中开辟空间,空间比较大,读写文件速度快,缺点:不受垃圾回收器控制,创建和销毁耗性能。

  • 向Buffer中写数据:

写数据到Buffer有两种方式:

从Channel写到Buffer,后面案例使用;

通过Buffer的put()方法写到Buffer里:put方法有很多版本,允许你以不同的方式把数据写入到Buffer中。例如, 写到一个指定的位置,或者把一个字节数组写入到Buffer。 更多Buffer实现的细节参考JavaDoc。

flip()方法:

flip方法将Buffer从写模式切换到读模式。调用flip()方法会将position设回0,并将limit设置成之前position的值。换句话说,position现在用于标记读的位置,limit表示之前写进了多少个byte、char等 —— 现在能读取多少个byte、char等。

  • 从Buffer中读取数据

从Buffer中读取数据有两种方式:

1. 从Buffer读取数据到Channel,后面案例使用;

2. 使用get()方法从Buffer中读取数据:get方法有很多版本,允许你以不同的方式从Buffer中读取数据。例如,从指定position读取,或者从Buffer中读取数据到字节数组。更多Buffer实现的细节参考JavaDoc。

rewind()方法:

Buffer.rewind()将position设回0,所以你可以重读Buffer中的所有数据。limit保持不变,仍然表示能从Buffer中读取多少个元素(byte、char等)。

clear()与compact()方法:

一旦读完Buffer中的数据,需要让Buffer准备好再次被写入。可以通过clear()或compact()方法来完成。如果调用的是clear()方法,position将被设回0,limit被设置成 capacity的值。换句话说,Buffer 被清空了。Buffer中的数据并未清除,只是这些标记告诉我们可以从哪里开始往Buffer里写数据。如果Buffer中有一些未读的数据,调用clear()方法,数据将“被遗忘”,意味着不再有任何标记会告诉你哪些数据被读过,哪些还没有。

如果Buffer中仍有未读的数据,且后续还需要这些数据,但是此时想要先写些数据,那么使用compact()方法。compact()方法将所有未读的数据拷贝到Buffer起始处。然后将position设到最后一个未读元素正后面。limit属性依然像clear()方法一样,设置成capacity。现在Buffer准备好写数据了,但是不会覆盖未读的数据。

mark()与reset()方法:

通过调用Buffer.mark()方法,可以标记Buffer中的一个特定position。之后可以通过调用Buffer.reset()方法恢复到
这个position。

/*
 *  Invariants: mark <= position <= limit <= capacity
 *  private int mark = -1;
 *  private int position = 0;
 *  private int limit;
 *  private int capacity;
 */
import java.nio.ByteBuffer;
public class Demo8 {
	public static void main(String[] args) {
		//1.创建缓冲区
		ByteBuffer byteBuffer = ByteBuffer.allocate(1024);//1kb
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//2.写入数据
		byteBuffer.put("hello".getBytes());
		System.out.println("--------------------put-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//3.切换为读模式
		byteBuffer.flip();
		System.out.println("--------------------flip-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//4.读取数据
		System.out.println("--------------------读数据-------------------");
		for (int i = 0; i < byteBuffer.limit(); i++) {
			int d = byteBuffer.get();
			System.out.println((char)d);
		}
		System.out.println("--------------------读取后-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//5.清空(clear)
		byteBuffer.clear();
		System.out.println("--------------------clear-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
	}

}

运行结果:

import java.nio.ByteBuffer;
public class Demo7 {
	public static void main(String[] args) {
		//1.创建缓冲区
		ByteBuffer byteBuffer = ByteBuffer.allocate(1024);//1kb
		//2.写入数据
		byteBuffer.put("hello".getBytes());
		//3.切换为读模式
		byteBuffer.flip();
		//4.读取数据
		System.out.println("--------------------读取数据-------------------");
		for (int i = 0; i < 2; i++) {
			int d = byteBuffer.get();
			System.out.println((char)d);
		}
		System.out.println("--------------------读取后-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//5.清空(compact)
		byteBuffer.compact();
		System.out.println("--------------------compact-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//6.切换为读模式
		byteBuffer.flip();
		System.out.println("--------------------flip-------------------");
		System.out.println("capacity:"+byteBuffer.capacity());
		System.out.println("limit:"+byteBuffer.limit());
		System.out.println("position:"+byteBuffer.position());
		
		//7.读取数据
		System.out.println("--------------------读剩下的数据-------------------");
		for (int i = 0; i < 3; i++) {
			int d = byteBuffer.get();
			System.out.println((char)d);
		}
	}

}

运行结果:

Channel:

基本上,所有的 IO 在NIO 中都从一个Channel 开始。Channel 有点象流。 数据可以从Channel读到Buffer中,也可以从Buffer 写到Channel中。

JAVA NIO中的一些主要Channel的实现:

FileChannel,DatagramChannel,SocketChannel,ServerSocketChannel

  • FileChannel基本使用:

Java NIO中的FileChannel是一个连接到文件的通道。可以通过文件通道读写文件。

FileChannel无法设置为非阻塞模式,它总是运行在阻塞模式下。

  • 创建FileChannel:

在使用FileChannel之前,必须先创建它。创建方式有两种:

第一种:使用一个InputStream、OutputStream或RandomAccessFile来获取一个FileChannel实例。

第二种:JDK1.7之后才能使用, FileChannel.open()方法。

//1.1使用普通的流获取
FileInputStream fIS = new FileInputStream("F:\\Text\\aaa.txt");
FileChannel channel = fIS.getChannel();

RandomAccessFile aFile = new RandomAccessFile("data/nio‐data.txt", "rw");
FileChannel inChannel = aFile.getChannel();

//1.2 jdk1.7之后工具类
FileChannel fileChannel = FileChannel.open(Paths.get("F:\\Text\\aaa.txt"),StandardOpenOption.READ);
  • 从FileChannel读取数据:
ByteBuffer buf = ByteBuffer.allocate(1024);
int bytesRead = inChannel.read(buf);

调用多个read()方法之一从FileChannel中读取数据。

首先,分配一个Buffer。从FileChannel中读取的数据将被读到Buffer中。然后,调用FileChannel.read()方法。该方法将数据从FileChannel读取到Buffer中。read()方法返回的int值表示了有多少字节被读到了Buffer中。如果返回-1,表示到了文件末尾。

  • 向FileChannel写数据:
FileChannel channel = FileChannel.open(Paths.get("F:\\Text\\aaa.txt"),StandardOpenOption.READ);

String newData = "New String to write to file..." + System.currentTimeMillis();
ByteBuffer buf = ByteBuffer.allocate(48);
buf.clear();
buf.put(newData.getBytes());
buf.flip();
while(buf.hasRemaining()) {
        //使用FileChannel.write()方法向FileChannel写数据,该方法的参数是一个Buffer。
	channel.write(buf);
}

注意FileChannel.write()是在while循环中调用的。因为无法保证write()方法一次能向FileChannel写完所有字节,
因此需要重复调用write()方法,直到Buffer中已经没有尚未写入通道的字节。

  • 注意:

FileChannel 的 read()方法和 write() 方法,本质上都是两步操作

read:先将数据从硬盘中取出,再放入Buffer中

write:先从Buffer中获取数据,再将数据放入硬盘中

  • 关闭FileChannel

用完FileChannel后必须将其关闭。

channel.close();
  • FileChannel写入文本文件:
        public static void main(String[] args) throws IOException {
		//1.创建FileOutputStream
		FileOutputStream fileOutputStream = new FileOutputStream("F:\\Text\\aaa.txt");
		//2.获取通道
		FileChannel channel = fileOutputStream.getChannel();
		//3.创建缓冲区
		ByteBuffer buf = ByteBuffer.allocate(1024);
		//4.向缓冲区中放入数据
		buf.put("hello world,楠哥哥最帅最棒".getBytes());
		//5.切换为读模式
		buf.flip();
		//6.写入数据
		channel.write(buf);
		//7.关闭
		channel.close();
		System.out.println("写入完毕");
	}

运行结果:F:\\Text\\aaa.txt 中写入 "hello world,楠哥哥最帅最棒"

  • FileChannel读取文本文件:
        //1.创建通道
	FileChannel fileChannel = FileChannel.open(Paths.get("F:\\Text\\aaa.txt"),StandardOpenOption.READ);
	//2.创建缓冲区
	ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
//		int len = fileChannel.read(byteBuffer);
//		System.out.println("长度"+len);
	//3.读取数据
	while (fileChannel.read(byteBuffer) > 0) {
		//切换为读模式
		byteBuffer.flip();
		byte[] data = byteBuffer.array();
//			String data=new String(buffer.array(),0,len);
//			System.out.println(data);
		System.out.println(new String(data));
		byteBuffer.clear();
	}
	//4.关闭
	fileChannel.close();
  • FileChannel复制图片:

直接缓冲区的使用,可以提高读写的速度。但是直接缓冲区的创建和销毁的开销比较大,一般大文件操作或能显著提
高读写性能时使用。

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
public class Demo8 {
	public static void main(String[] args) throws IOException {
		//1.创建通道
		FileChannel inChannel = FileChannel.open(
				Paths.get("F:\\riverflowsinyou.png"), StandardOpenOption.READ);
		FileChannel outChannel = FileChannel.open(
			Paths.get("F:\\001.png"), StandardOpenOption.CREATE,StandardOpenOption.WRITE);
		//2.创建间接(堆内)缓冲区
		ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
		int len =0;
		//3.复制
		while ((len = inChannel.read(byteBuffer)) != -1) {
			byteBuffer.flip();
			outChannel.write(byteBuffer);
			byteBuffer.clear();
		}
		//4.关闭
		inChannel.close();
		outChannel.close();
		System.out.println("复制完毕");
	}

}
  • 使用内存映射文件复制大文件

内存映射文件也属于直接缓冲区

import java.io.RandomAccessFile;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileChannel.MapMode;
public class Demo9 {
	public static void main(String[] args) throws Exception {
		//1创建通道
//		FileChannel inChannel = FileChannel.open(
//					Paths.get("F:\\KPI录屏.mp4"), StandardOpenOption.READ);
		FileChannel inChannel = new RandomAccessFile("F:\\KPI录屏.mp4", "r").getChannel();
//		FileChannel outChannel = FileChannel.open(Paths.get("F:\\001.png"), 
//					StandardOpenOption.CREATE,StandardOpenOption.WRITE);
		FileChannel outChannel=new RandomAccessFile("F:\\001.mp4", "rw").getChannel();

		//2使用内存映射缓冲区(直接缓冲区)
		MappedByteBuffer map = inChannel.map(MapMode.READ_ONLY, 0,inChannel.size());
		outChannel.write(map);
		//3关闭
		inChannel.close();
		outChannel.close();
		System.out.println("复制完毕");
	}

}

文件特别大的时候,可能会出现文件已经复制完毕但程序还未结束的情况,因为对文件映射在直接缓冲区,属于操作系统,这块空间需要由操作系统回收,JVM和操作系统的通信会导致一些延迟(即运行区的红方块还亮着)。

注意:如果文件超过2G,需要分多个文件映射。

Selector和非阻塞网络编程:

传统的网络编程:

TCP ServlerSocket Socket (阻塞式)                    

UDP DatagramSocket DatagramPacket

  • ServerSocketChannelSocketChannel实现阻塞式网络编程

ServerSocketChannel是一个基于通道的socket监听器,等同于ServerSocket类。SocketChannel是一个基于通道的客户端套接字,等同于Socket类。

//服务器端:
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
public class Demo1 {
	public static void main(String[] args) {
		ServerSocketChannel serverSocketChannel = null;
		SocketChannel socketChannel = null;
		try {
			//1.创建serverSocketChannel
			serverSocketChannel = ServerSocketChannel.open();
			//2.绑定地址和端口号
			serverSocketChannel.bind(new InetSocketAddress("localhost",8081));
			//3.接收客户端连接
			System.out.println("服务器端启动");
			socketChannel = serverSocketChannel.accept();
			//4.读取客户端发送的数据
			ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
			while (true) {
				int len = socketChannel.read(byteBuffer);
				if(len == -1) {//-1:正常关闭      抛出异常:客户端没有正常关闭
					break;
				}
				byteBuffer.flip();
				String data = new String(byteBuffer.array(), 0, len);
				System.out.println("客户端:" + data);
				byteBuffer.clear();
			}
			
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			try {
				socketChannel.close();
				serverSocketChannel.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}
//客户端:
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import java.util.Scanner;
public class Demo2 {
	public static void main(String[] args) {
		SocketChannel socketChannel = null;
		try {
                        //1.创建socketChannel 
			socketChannel = SocketChannel.open(new InetSocketAddress("localhost",8081));
			//2.客户端发送数据
			System.out.println("客户端启动");
			ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
			Scanner input = new Scanner(System.in);
			while (true) {
				String string = input.nextLine();
				byteBuffer.put(string.getBytes());
				byteBuffer.flip();
				socketChannel.write(byteBuffer);
				byteBuffer.clear();
				if(string.equals("88")) {
					break;
				}
			}
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			try {
				socketChannel.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}
  • Selector 简介

要使用Selector,得向Selector注册Channel,然后调用它的select()方法。这个方法会一直阻塞到某个注册的通道有事件就绪。一旦这个方法返回,线程就可以处理这些事件,事件的例子有如新连接进来,数据接收等。

选择器提供选择执行已经就绪的任务的能力.从底层来看,Selector提供了询问通道是否已经准备好执行每个I/O操作的能力。Selector 允许单线程处理多个Channel。仅用单个线程来处理多个Channels的好处是,只需要更少的线程来处理通道。事实上,可以只用一个线程处理所有的通道,这样会大量的减少线程之间上下文切换的开销。

选择器(Selector):Selector选择器类管理着一个被注册的通道集合的信息和它们的就绪状态。通道是和选择器一起被注册的,并且使用选择器来更新通道的就绪状态。

可选择通道(SelectableChannel):SelectableChannel这个抽象类提供了实现通道的可选择性所需要的公共方法。它是所有支持就绪检查的通道类的父类。因为FileChannel类没有继承SelectableChannel因此是不是可选通道,而所有socket通道都是可选择的,SocketChannel和ServerSocketChannel是SelectableChannel的子类。

选择键(SelectionKey):选择键封装了特定的通道与特定的选择器的注册关系。选择键对象被SelectableChannel.register()返回并提供一个表示这种注册关系的标记。选择键包含了两个比特集(以整数的形式进行编码),选择键支持四种操作类型:

Connect 连接,Accept 接受请求,Read 读,Write 写

Java中定义了四个常量来表示这四种操作类型:

SelectionKey.OP_CONNECT 
SelectionKey.OP_ACCEPT 
SelectionKey.OP_READ 
SelectionKey.OP_WRITE
  •  实现非阻塞式网络通信:
//服务器端:
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.util.Iterator;
public class Server {
	public static void main(String[] args) throws IOException {
		//1.创建ServerSocketChannel
		ServerSocketChannel serverSocketChannel = ServerSocketChannel.open();
		//2.设置为非阻塞式
		serverSocketChannel.configureBlocking(false);
		//3.绑定地址
		serverSocketChannel.bind(new InetSocketAddress("localhost",8082));
		//4.创建选择器
		Selector selector = Selector.open();
		//5.注册选择器
		serverSocketChannel.register(selector,SelectionKey.OP_ACCEPT);
		while (selector.select() > 0) {
			Iterator<SelectionKey> iterator = selector.selectedKeys().iterator();
			while (iterator.hasNext()) {
				SelectionKey selectionKey = iterator.next();
				if(selectionKey.isAcceptable()) {
					SocketChannel socketChannel = serverSocketChannel.accept();
					socketChannel.configureBlocking(false);
					socketChannel.register(selector, selectionKey.OP_READ);
				}else if (selectionKey.isReadable()) {//获取客户端发送的数据
					//获取SocketChannel
					SocketChannel channel = (SocketChannel) selectionKey.channel();
					//创建缓冲区
					ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
					int len = 0;
					while ((len = channel.read(byteBuffer)) > 0) {
						byteBuffer.flip();
						System.out.println(new String(byteBuffer.array(),0,len));
						byteBuffer.clear();
					}
					if (len == -1) {//客户端已经退出
						channel.close();
					}
				}
				iterator.remove();
			}
			
		}
		
		
		
	}

}
//客户端:
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import java.util.Scanner;
public class Client {
	public static void main(String[] args) {
		SocketChannel socketChannel = null;
		try {
			//1.创建socketChannel
			socketChannel = SocketChannel.open(new InetSocketAddress("localhost",8082));
			//2.设置为非阻塞式
			socketChannel.configureBlocking(false);
			System.out.println("客户端启动");
			//3.创建缓冲区
			ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
			Scanner input = new Scanner(System.in);
			
			while (true) {
				String string = input.nextLine();
				byteBuffer.put(string.getBytes());
				byteBuffer.flip();
				socketChannel.write(byteBuffer);
				byteBuffer.clear();
				if(string == "88") {//退出循环
					break;
				}
			}
			
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			try {
				socketChannel.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值