`
Donald_Draper
  • 浏览: 984388 次
社区版块
存档分类
最新评论

PipeImpl解析

    博客分类:
  • NIO
nio 
阅读更多
ServerSocketChannel定义:http://donald-draper.iteye.com/blog/2369836
ServerSocketChannelImpl解析:http://donald-draper.iteye.com/blog/2370912
SocketChannelImpl 解析一(通道连接,发送数据):http://donald-draper.iteye.com/blog/2372364
SocketChannelImpl 解析二(发送数据后续):http://donald-draper.iteye.com/blog/2372548
SocketChannelImpl 解析三(接收数据):http://donald-draper.iteye.com/blog/2372590
SocketChannelImpl 解析四(关闭通道等) :http://donald-draper.iteye.com/blog/2372717
Pipe定义:http://donald-draper.iteye.com/blog/2373540
引言:
    Pipe中包含一个可写通道SinkChannel和一个可读通道SourceChannel。sink向管道写字节序序列,
source从管道读取字节序列。
我们从Pipe的open方法开始:
public static Pipe open() throws IOException {
        return SelectorProvider.provider().openPipe();
}

这里为什么是SelectorProviderImpl,前面已经说过不在说,
//SelectorProviderImpl
 public Pipe openPipe()
        throws IOException
{
    return new PipeImpl(this);
}

下面来看通道的实现,PipeImpl
package sun.nio.ch;
import java.io.IOException;
import java.net.*;
import java.nio.ByteBuffer;
import java.nio.channels.*;
import java.nio.channels.spi.SelectorProvider;
import java.security.*;
import java.util.Random;

// Referenced classes of package sun.nio.ch:
//            IOUtil, Util, SinkChannelImpl, SourceChannelImpl

class PipeImpl extends Pipe
{
    private java.nio.channels.Pipe.SourceChannel source;//Source通道
    private java.nio.channels.Pipe.SinkChannel sink;//Sink通道
    private static final Random rnd;//
    static 
    {
        //加载net和nio资源库
        Util.load();
        byte abyte0[] = new byte[8];
	//委托IOUtil,获取8个字节序列,static native boolean randomBytes(byte abyte0[]);
        boolean flag = IOUtil.randomBytes(abyte0);
        if(flag)
            rnd = new Random(ByteBuffer.wrap(abyte0).getLong());
        else
            rnd = new Random();
    }
     PipeImpl(SelectorProvider selectorprovider)
        throws IOException
    {
        try
        {
	    //在与当前线程访问控制权限的情况下,执行Initializer,权限动作,执行Initializer的run方法
            AccessController.doPrivileged(new Initializer(selectorprovider));
        }
        catch(PrivilegedActionException privilegedactionexception)
        {
            throw (IOException)privilegedactionexception.getCause();
        }
    }
    //管道初始化Action
    private class Initializer
        implements PrivilegedExceptionAction
    {
        private final SelectorProvider sp;
        static final boolean $assertionsDisabled = !sun/nio/ch/PipeImpl.desiredAssertionStatus();
        final PipeImpl this$0;
        private Initializer(SelectorProvider selectorprovider)
        {
            this$0 = PipeImpl.this;
            super();
            sp = selectorprovider;
        }
        public volatile Object run()
            throws Exception
        {
            return run();
        }
        public Void run()
            throws IOException
        {
            ServerSocketChannel serversocketchannel;//ServerSocket通道,
            SocketChannel socketchannel;//用于source通道
            SocketChannel socketchannel1;//用于Sink通道
            serversocketchannel = null;
            socketchannel = null;
            socketchannel1 = null;
            try
            {
	        //获取本地地址
                InetAddress inetaddress = InetAddress.getByName("127.0.0.1");
                if(!$assertionsDisabled && !inetaddress.isLoopbackAddress())
                    throw new AssertionError();
		//打开一个ServerSocket通道
                serversocketchannel = ServerSocketChannel.open();
		//ServerSocket通道绑定地址
                serversocketchannel.socket().bind(new InetSocketAddress(inetaddress, 0));
                InetSocketAddress inetsocketaddress = new InetSocketAddress(inetaddress, serversocketchannel.socket().getLocalPort());
                //打开一个SocketChannel通道
		socketchannel = SocketChannel.open(inetsocketaddress);
                ByteBuffer bytebuffer = ByteBuffer.allocate(8);
		//获取通道的随机long值
                long l = PipeImpl.rnd.nextLong();
                bytebuffer.putLong(l).flip();
		//向serverSocket通道发送一个long值,即8个字节
                socketchannel.write(bytebuffer);
                do
                {
		    //serverSocket接受连接
                    socketchannel1 = serversocketchannel.accept();
                    bytebuffer.clear();
		    //接受client通道端发送过来的数据
                    socketchannel1.read(bytebuffer);
                    bytebuffer.rewind();
                    if(bytebuffer.getLong() == l)
                        break;
                    socketchannel1.close();
                } while(true);
		//根据client通道,构造SourceChannelImpl
                source = new SourceChannelImpl(sp, socketchannel);
		//根据ServerChannel接受连接产生的SocketChannel通道,构造SinkChannelImpl
                sink = new SinkChannelImpl(sp, socketchannel1);
            }
            catch(IOException ioexception1)
            {
                try
                {
                    if(socketchannel != null)
                        socketchannel.close();
                    if(socketchannel1 != null)
                        socketchannel1.close();
                }
                catch(IOException ioexception2) { }
                IOException ioexception3 = new IOException("Unable to establish loopback connection");
                ioexception3.initCause(ioexception1);
                throw ioexception3;
            }
            try
            {
	        //关闭serverSocketChannle,任务完成(建立一个SocketChannle连接)
                if(serversocketchannel != null)
                    serversocketchannel.close();
            }
            catch(IOException ioexception) { }
            break MISSING_BLOCK_LABEL_277;
            Exception exception;
            exception;
            try
            {
                if(serversocketchannel != null)
                    serversocketchannel.close();
            }
            catch(IOException ioexception4) { }
            throw exception;
            return null;
        }
    }
    //返回source通道
    public java.nio.channels.Pipe.SourceChannel source()
    {
        return source;
    }
    //返回sink通道
    public java.nio.channels.Pipe.SinkChannel sink()
    {
        return sink;
    }
}

从上面可以看出PipeImpl,内部有一个Source通道SourceChannel,Sink通道SinkChannel,一个
随机数rnd(long),还有一个管道初始化Action,初始化时加载net和nio资源库,委托IOUtil产生8个字节,然后根据8个字节生成一个随机数rnd;在构造时,在与当前线程访问控制权限的情况下,执行Initializer,权限动作,执行Initializer的run方法,即通过ServerSocketChannle和SocketChannel建立一个通道连接;首先新建一个ServerSocketChannle和SocketChannel,分别绑定地址SocketChannel向ServerSocetChannel发送随机数rnd,ServerSocetChannel接受SocketChannel连接,产生一个SocketChannel1(server),SocketChannel1接受client(SocketChannel),检验与随机数rnd,相等则建立连接。然后根据SocketChannel1(server),构造Sink通道SinkChannelImpl,根据client(SocketChannel),构造Source通道SourceChannelImpl。
我们先来看SinkChannelImpl
package sun.nio.ch;

import java.io.FileDescriptor;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.*;
import java.nio.channels.spi.SelectorProvider;

// Referenced classes of package sun.nio.ch:
//            SelChImpl, SelectionKeyImpl, SelectorImpl, SocketChannelImpl, 
//            Util

class SinkChannelImpl extends java.nio.channels.Pipe.SinkChannel
    implements SelChImpl
{
    SocketChannel sc;//关联socket通道
    public FileDescriptor getFD()
    {
        return ((SocketChannelImpl)sc).getFD();
    }

    public int getFDVal()
    {
        return ((SocketChannelImpl)sc).getFDVal();
    }

    SinkChannelImpl(SelectorProvider selectorprovider, SocketChannel socketchannel)
    {
        super(selectorprovider);
        sc = socketchannel;
    }
   //关闭通道
    protected void implCloseSelectableChannel()
        throws IOException
    {
        //通道没有注册到任何选择器
        if(!isRegistered())
            kill();
    }
   //关闭socket通道
    public void kill()
        throws IOException
    {
        sc.close();
    }
    //配置阻塞模式
    protected void implConfigureBlocking(boolean flag)
        throws IOException
    {
        sc.configureBlocking(flag);
    }
    //写字节序列
      public int write(ByteBuffer bytebuffer)
        throws IOException
    {
        return sc.write(bytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long write(ByteBuffer abytebuffer[])
        throws IOException
    {
        return sc.write(abytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long write(ByteBuffer abytebuffer[], int i, int j)
        throws IOException
    {
        if(i < 0 || j < 0 || i > abytebuffer.length - j)
            throw new IndexOutOfBoundsException();
        return write(Util.subsequence(abytebuffer, i, j));
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }
    //设置就绪操作事件
    public boolean translateAndSetReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, 0, selectionkeyimpl);
    }
    //更新就绪操作事件
    public boolean translateAndUpdateReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, selectionkeyimpl.nioReadyOps(), selectionkeyimpl);
    }
    public boolean translateReadyOps(int i, int j, SelectionKeyImpl selectionkeyimpl)
    {
        int k = selectionkeyimpl.nioInterestOps();
        int l = selectionkeyimpl.nioReadyOps();
        int i1 = j;
	//就绪事件为读1写4连接8,接受连接事件16,不是这四种事件,则抛出Error
        if((i & 32) != 0)
            throw new Error("POLLNVAL detected");
	 //为8+16,接受连接,并建立连接,设置就绪事件k
        if((i & 24) != 0)
        {
            i1 = k;
            selectionkeyimpl.nioReadyOps(i1);
            return (i1 & ~l) != 0;
        }
        if((i & 4) != 0 && (k & 4) != 0)
            i1 |= 4;//写操作
        selectionkeyimpl.nioReadyOps(i1);
        return (i1 & ~l) != 0;
    }
    //设置兴趣操作事件
    public void translateAndSetInterestOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        if((i & 4) != 0)
            i = 4;//写事件
        selectionkeyimpl.selector.putEventOps(selectionkeyimpl, i);
    }  
}

从SinkChannelImpl,可以看出内部关联一个socket通道,SinkChannelImpl关闭通道,配置通道阻塞模式,写字节序列到管道都是委托给内部的SocketChannle。
再看SourceChannelImpl
class SourceChannelImpl extends java.nio.channels.Pipe.SourceChannel
    implements SelChImpl
{
    SocketChannel sc;
    public FileDescriptor getFD()
    {
        return ((SocketChannelImpl)sc).getFD();
    }

    public int getFDVal()
    {
        return ((SocketChannelImpl)sc).getFDVal();
    }

    SourceChannelImpl(SelectorProvider selectorprovider, SocketChannel socketchannel)
    {
        super(selectorprovider);
        sc = socketchannel;
    }
   //关闭通道
    protected void implCloseSelectableChannel()
        throws IOException
    {
        //通道没有注册到任何选择器
        if(!isRegistered())
            kill();
    }
    //关闭socket通道
    public void kill()
        throws IOException
    {
        sc.close();
    }
   //配置阻塞模式
    protected void implConfigureBlocking(boolean flag)
        throws IOException
    {
        sc.configureBlocking(flag);
    }
    //读取字节序列
    public int read(ByteBuffer bytebuffer)
        throws IOException
    {
        return sc.read(bytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long read(ByteBuffer abytebuffer[], int i, int j)
        throws IOException
    {
        if(i < 0 || j < 0 || i > abytebuffer.length - j)
            throw new IndexOutOfBoundsException();
        return read(Util.subsequence(abytebuffer, i, j));
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long read(ByteBuffer abytebuffer[])
        throws IOException
    {
        return sc.read(abytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }
     //设置就绪操作事件
    public boolean translateAndSetReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, 0, selectionkeyimpl);
    }
    //更新就绪操作事件
     public boolean translateAndUpdateReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, selectionkeyimpl.nioReadyOps(), selectionkeyimpl);
    }
    public boolean translateReadyOps(int i, int j, SelectionKeyImpl selectionkeyimpl)
    {
        int k = selectionkeyimpl.nioInterestOps();
        int l = selectionkeyimpl.nioReadyOps();
        int i1 = j;
	//就绪事件为读1写4连接8,接受连接事件16,不是这四种事件,则抛出Error
        if((i & 32) != 0)
            throw new Error("POLLNVAL detected");
	 //为8+16,接受连接,并建立连接,设置就绪事件k
        if((i & 24) != 0)
        {
            i1 = k;
            selectionkeyimpl.nioReadyOps(i1);
            return (i1 & ~l) != 0;
        }
        if((i & 1) != 0 && (k & 1) != 0)
            i1 |= 1;//读事件
        selectionkeyimpl.nioReadyOps(i1);
        return (i1 & ~l) != 0;
    }
    //设置兴趣操作事件
    public void translateAndSetInterestOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        if((i & 1) != 0)
            i = 1;//读事件
        selectionkeyimpl.selector.putEventOps(selectionkeyimpl, i);
    }
}

从SourceChannelImpl,可以看出内部关联一个socket通道,SourceChannelImpl关闭通道,配置通道阻塞模式,从管道读取字节序列都是委托给内部的SocketChannle。
总结:
     PipeImpl,内部有一个Source通道SourceChannel,Sink通道SinkChannel,一个随机数rnd(long),还有一个管道初始化Action,初始化时加载net和nio资源库,委托IOUtil产生8个字节,然后根据8个字节生成一个随机数rnd;在构造时,在与当前线程访问控制权限的情况下,执行Initializer,权限动作,执行Initializer的run方法,即通过ServerSocketChannle和SocketChannel建立一个通道连接;首先新建一个ServerSocketChannle和SocketChannel,分别绑定地址SocketChannel向ServerSocetChannel发送随机数rnd,ServerSocetChannel接受SocketChannel连接,产生一个SocketChannel1(server),SocketChannel1接受client(SocketChannel),检验与随机数rnd,相等则建立连接。然后根据SocketChannel1(server),构造Sink通道SinkChannelImpl,根据client(SocketChannel),构造Source通道SourceChannelImpl。
    SinkChannelImpl,内部关联一个socket通道,SinkChannelImpl关闭通道,配置通道阻塞模式,写字节序列到管道都是委托给内部的SocketChannle。
    SourceChannelImpl,内部关联一个socket通道,SourceChannelImpl关闭通道,配置通道阻塞模式,从管道读取字节序列都是委托给内部的SocketChannle。
分享到:
评论

相关推荐

    PipeImpl.rar_Java编程_Unix_Linux_

    标题中的"PipeImpl.rar"可能是一个包含Java编程中关于实现管道(Pipe)接口源代码的压缩文件,专门针对Unix和Linux操作系统。在这个场景下,我们主要讨论的是在这些类Unix系统中如何用Java来实现I/O管道。 Java编程在...

    java+sql server项目之科帮网计算机配件报价系统源代码.zip

    sql server+java项目之科帮网计算机配件报价系统源代码

    【java毕业设计】智慧社区老人健康监测门户.zip

    有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上

    【java毕业设计】智慧社区心理咨询平台(源代码+论文+PPT模板).zip

    zip里包含源码+论文+PPT,有java环境就可以运行起来 ,功能说明: 文档开篇阐述了随着计算机技术、通信技术和网络技术的快速发展,智慧社区门户网站的建设成为了可能,并被视为21世纪信息产业的主要发展方向之一 强调了网络信息管理技术、数字化处理技术和数字式信息资源建设在国际竞争中的重要性。 指出了智慧社区门户网站系统的编程语言为Java,数据库为MYSQL,并实现了新闻资讯、社区共享、在线影院等功能。 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。

    计算机系统基础实验LinkLab实验及解答:深入理解ELF文件与链接过程

    内容概要:本文档详细介绍了LinkLab实验的五个阶段,涵盖了ELF文件的组成、符号表的理解、代码节与重定位位置的修改等内容。每个阶段都有具体的实验要求和步骤,帮助学生理解链接的基本概念和链接过程中涉及的各项技术细节。 适合人群:计算机科学专业的本科生,特别是正在修读《计算机系统基础》课程的学生。 使用场景及目标:① 通过实际操作加深对链接过程和ELF文件的理解;② 掌握使用readelf、objdump和hexedit等工具的技巧;③ 实现特定输出以验证实验结果。 阅读建议:实验过程中的每个阶段都有明确的目标和提示,学生应按照步骤逐步操作,并结合反汇编代码和二进制编辑工具进行实践。在完成每个阶段的实验后,应及时记录实验结果和遇到的问题,以便于总结和反思。

    基于关键词的历时百度搜索指数自动采集资料齐全+详细文档+高分项目+源码.zip

    【资源说明】 基于关键词的历时百度搜索指数自动采集资料齐全+详细文档+高分项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!

    用C语言写出一个简单的圣诞树,让你的朋友们体验一下程序员的浪漫,点开即令哦!

    第一次发文的小白,解释的不好,各位大佬勿怪哦

    免费下载:Hilma af Klint a Biography (Julia Voss)_tFy2T.zip

    免费下载:Hilma af Klint a Biography (Julia Voss)_tFy2T.zip

    屏幕截图 2024-12-21 172527.png

    屏幕截图 2024-12-21 172527

    2024级涉外护理7班马天爱劳动实践总结1.docx

    2024级涉外护理7班马天爱劳动实践总结1.docx

    IndexOutOfBoundsException(解决方案).md

    IndexOutOfBoundsException(解决方案)

    【java毕业设计】智慧社区垃圾分类门户.zip

    有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上

    【java毕业设计】智慧社区网端门户(源代码+论文+PPT模板).zip

    有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上

    【java毕业设计】智慧社区智慧养老照护系统(源代码+论文+PPT模板).zip

    zip里包含源码+论文+PPT,有java环境就可以运行起来 ,功能说明: 文档开篇阐述了随着计算机技术、通信技术和网络技术的快速发展,智慧社区门户网站的建设成为了可能,并被视为21世纪信息产业的主要发展方向之一 强调了网络信息管理技术、数字化处理技术和数字式信息资源建设在国际竞争中的重要性。 指出了智慧社区门户网站系统的编程语言为Java,数据库为MYSQL,并实现了新闻资讯、社区共享、在线影院等功能。 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。

    Delphi 12 控件之DevExpressVCLProductDemos-24.2.3.exe

    DevExpressVCLProductDemos-24.2.3.exe

    计算机语言学中并查集数据结构的C++实现

    欢迎下载

    【java毕业设计】智慧社区养老服务平台.zip

    有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上

    小米15pro工程固件 可以用于修改参数 修复tee损坏 修复底层分区 会用的下载

    资源描述: 机型代码:haotian 1-----工程固件可以用于修改参数 开启diag端口。可以用于修复tee损坏以及修复底层分区。 2-----此固件是完整官方。不是第三方打包。请知悉 3-----此固件可以解锁bl后fast模式刷写。也可以底层深刷。也可以编程器写入 4-----请会用此固件 了解工程固件常识以及会用的朋友下载。 5-----个别高版本深刷需要授权才可以刷入。需要自己会刷写。 6------资源有可复制性。下载后不支持退。请考虑清楚在下载哦 工程资源常识可以参考博文:https://blog.csdn.net/u011283906/article/details/141815378 了解基本

    JSP论文格式化系统_——后台模块的设计与实现(源代码+论文)(2024gk).7z

    1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于计算机科学与技术等相关专业,更为适合;

    html+css网页设计 美食 蛋糕美食7个页面

    预览地址:https://blog.csdn.net/qq_42431718/article/details/144633992 html+css网页设计 美食 蛋糕美食7个页面

Global site tag (gtag.js) - Google Analytics