Java课程设计:基于Java+Swing+MySQL的图书管理系统(内附源码)

文章目录

  • 一、项目介绍
  • 二、项目展示
  • 三、源码展示
  • 四、源码获取

一、项目介绍

图书管理系统是一个常见的软件项目,广泛应用于图书馆、学校、企业等需要管理图书资源的场景。该系统通常涵盖图书信息录入、查询、借阅、归还等核心功能,是实现图书资源高效管理的重要工具。

随着信息技术的快速发展,传统纸质图书管理方式已经难以满足现代化管理的需求。图书管理系统的数字化转型成为当前图书馆和相关行业的重要发展方向。通过开发和应用图书管理系统,可以实现图书资源的数字化管理,提高工作效率,增强用户体验。

二、项目展示

登录界面
在这里插入图片描述

首页
请添加图片描述
读者查询
在这里插入图片描述
借阅图书
在这里插入图片描述
图书查询
在这里插入图片描述

三、源码展示

登录界面实现

public class LoginForm extends JFrame {


    private JComboBox comboBox;
    private JLabel title,usernamelab,passwordlab,select;
    private JTextField usernameField;
    private JPasswordField passwordField;
    private JButton submit,updatePwd,regist;
    private UserService service = new UserService();

    public LoginForm() {

        Container container = getContentPane();
        container.setLayout(null);


        submit=new JButton("登录");
        submit.setBounds(20,210,60,20);
        //登录监听
        submit.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                loginByUserAndPwd(e);
            }
        });
        regist=new JButton("注册");
        regist.setBounds(90,210,60,20);
        //跳转到注册界面
        regist.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                new RegistForm();
            }
        });

        updatePwd=new JButton("修改密码");
        updatePwd.setBounds(160,210,100,20);
        //更新密码
        updatePwd.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                new UpdatePwdForm();
            }
        });


        title=new JLabel("图书管理系统");
        title.setFont(new Font("宋体", Font.PLAIN, 24));
        title.setBounds(70,30,200,25);
        usernamelab=new JLabel("用户名:");
        usernamelab.setFont(new Font("宋体", Font.PLAIN, 16));
        usernamelab.setBounds(50,80,60,20);
        passwordlab=new JLabel("密码:");
        passwordlab.setFont(new Font("宋体", Font.PLAIN, 16));
        passwordlab.setBounds(50,120,60,20);

        usernameField=new JTextField();
        usernameField.setBounds(120,80,130,20);
        passwordField=new JPasswordField();
        passwordField.setEchoChar('*');
        passwordField.setBounds(120,120,130,20);


        container.add(title);
        container.add(usernamelab);container.add(usernameField);
        container.add(passwordlab);container.add(passwordField);
        container.add(submit);container.add(regist);container.add(updatePwd);


        //container.setBackground(Color.RED);
        setTitle("登录");
        setSize(300,300);
        setLocationRelativeTo(null);
        setResizable(false);
        setVisible(true);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    private void loginByUserAndPwd(ActionEvent e) {
        String username = this.usernameField.getText();
        String password = new String(this.passwordField.getPassword());
        String is_admin="";

        if(StringUtil.isEmpty(username)||StringUtil.isEmpty(password)){
            JOptionPane.showMessageDialog(null,"用户名或密码不能为空");
        }else {
                is_admin="1";//管理员
                User user = service.login(username, password, is_admin);
                if (user!=null){
                    JOptionPane.showMessageDialog(null,"登录成功");
                    dispose();
                    new RootMainForm();
                }else {
                    JOptionPane.showMessageDialog(null,"账号或面错误");
                }
            }
        }

    }

添加图书界面实现

public class AddBookForm extends JFrame {

    private JLabel bookId,bookName,bookType,translator,publishTime,stock,price,publisher,author;
    private JTextField bookIdField,bookNameField,translatorField,stockField,priceField,publisherField,authorField;
    private JButton btn_Add,btn_Cancel;
    private  JComboBox<String> comboBox;
    final JXDatePicker datepick = new JXDatePicker();
     

    public AddBookForm(){
        Container container = getContentPane();
        container.setLayout(null);

        btn_Add=new JButton("保存");
        btn_Add.setBounds(190,310,80,20);
        btn_Cancel=new JButton("取消");
        btn_Cancel.setBounds(320,310,80,20);
        //取消按钮监听
        btn_Cancel.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                dispose();
            }
        });
        //添加按钮监听
        btn_Add.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                try {
                    addBook(e);
                } catch (Exception ex) {
                    ex.printStackTrace();
                }
            }
        });

        bookId=new JLabel("图书编号");
        bookId.setFont(new Font("宋体", Font.PLAIN, 16));
        bookId.setBounds(50,50,100,20);
        bookType=new JLabel("图书类型");
        bookType.setFont(new Font("宋体", Font.PLAIN, 16));
        bookType.setBounds(50,90,100,20);
        translator=new JLabel("译者");
        translator.setFont(new Font("宋体", Font.PLAIN, 16));
        translator.setBounds(50,130,100,20);
        publishTime=new JLabel("出版时间");
        publishTime.setFont(new Font("宋体", Font.PLAIN, 16));
        publishTime.setBounds(50,170,100,20);
        stock=new JLabel("库存数量");
        stock.setFont(new Font("宋体", Font.PLAIN, 16));
        stock.setBounds(50,210,100,20);
        bookName=new JLabel("图书名称");
        bookName.setFont(new Font("宋体", Font.PLAIN, 16));
        bookName.setBounds(280,50,100,20);
        author=new JLabel("作者");
        author.setFont(new Font("宋体", Font.PLAIN, 16));
        author.setBounds(280,90,100,20);
        publisher=new JLabel("出版社");
        publisher.setFont(new Font("宋体", Font.PLAIN, 16));
        publisher.setBounds(280,130,100,20);
        price=new JLabel("定价");
        price.setFont(new Font("宋体", Font.PLAIN, 16));
        price.setBounds(280,170,100,20);

        bookIdField=new JTextField();
        bookIdField.setColumns(10);
        bookIdField.setBounds(120,50,130,20);
        String[] ty=new String[]{"文学","理学"};
        comboBox = new JComboBox<>(ty);
        comboBox.setBounds(120,90,130,20);
        translatorField=new JTextField();
        translatorField.setColumns(10);
        translatorField.setBounds(120,130,130,20);
        Date date = new Date();
        // 设置 date日期
        datepick.setDate(date);
        datepick.setBounds(120,170,130,20);

        stockField=new JTextField();
        stockField.setColumns(10);
        stockField.setBounds(120,210,130,20);
        bookNameField=new JTextField();
        bookNameField.setColumns(10);
        bookNameField.setBounds(360,50,130,20);
        authorField=new JTextField();
        authorField.setColumns(10);
        authorField.setBounds(360,90,130,20);
        publisherField=new JTextField();
        publisherField.setColumns(10);
        publisherField.setBounds(360,130,130,20);
        priceField=new JTextField();
        priceField.setColumns(10);
        priceField.setBounds(360,170,130,20);

        container.add(bookId);container.add(bookIdField);
        container.add(bookName);container.add(bookNameField);
        container.add(bookType);container.add(comboBox);
        container.add(author);container.add(authorField);
        container.add(translator);container.add(translatorField);
        container.add(publisher);container.add(publisherField);
        container.add(publishTime);container.add(datepick);
        container.add(price);container.add(priceField);
        container.add(stock);container.add(stockField);
        container.add(btn_Add);container.add(btn_Cancel);


        setTitle("添加图书");
        setSize(600,400);
        setLocationRelativeTo(null);
        setResizable(false);
        setVisible(true);
        //setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }


    private void addBook(ActionEvent e) throws Exception {
        String bookId = this.bookIdField.getText();
        String bookname = this.bookNameField.getText();
        String booktype = (String) this.comboBox.getSelectedItem();
        String author = this.authorField.getText();
        String translator = this.translatorField.getText();
        String publisher = this.publisherField.getText();
        Date date = this.datepick.getDate();
        java.sql.Date publishtime = new java.sql.Date(date.getTime());

        float price = Float.parseFloat(this.priceField.getText());
        int stock = Integer.parseInt(this.stockField.getText());
        Book book = new Book(bookId, bookname, booktype, author, translator, publisher, publishtime, price, stock);
        BookService bookService = new BookService();
        int i=bookService.addBook(book);
        if (i>0){
            JOptionPane.showMessageDialog(null,"添加成功");
            dispose();
        }else {
            JOptionPane.showMessageDialog(null,"添加失败");
        }
    }

借阅图书实现

public class BorrowBookForm extends JFrame {
    private JLabel bookId,readerId,bookName,publisher,price,author,publishTime,stock
            ,readerName,readerType,max_num,days_num
            ,borrowNum,isBorrow,borrowDate
            ,readerInfo,borrowInfo,bookInfo;
    private JTextField bookIdField,readerIdField,bookNameField,authorField,publisherField,publishTimeField,priceField,stockField
            ,readerNameField,readerTypeField,max_numField,days_numField
            ,borrowNumField,isBorrowField;
    private JButton btn_Check,btn_Borrow,btn_Close;
    private BorrowService borrowService=new BorrowService();
    private ReaderService readerService=new ReaderService();
    final JXDatePicker datepick1,datepick2;

    public BorrowBookForm() {
        Container container = getContentPane();
        container.setLayout(null);

        btn_Check=new JButton("查询");
        btn_Check.setBounds(450,20,60,20);
        btn_Borrow=new JButton("借出");
        btn_Borrow.setBounds(200,410,60,20);
        btn_Close=new JButton("关闭");
        btn_Close.setBounds(300,410,60,20);
        btn_Close.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                dispose();
            }
        });
        btn_Check.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                checkReaderIdAndBookId(e);
            }
        });
        btn_Borrow.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                borrowBook(e);
            }
        });

        bookId=new JLabel("图书编号");
        bookId.setFont(new Font("宋体", Font.PLAIN, 16));
        bookId.setBounds(50,20,100,20);
        readerId=new JLabel("读者编号");
        readerId.setFont(new Font("宋体", Font.PLAIN, 16));
        readerId.setBounds(250,20,100,20);

        bookInfo=new JLabel("--------------------------图书信息--------------------------");
        bookInfo.setFont(new Font("宋体", Font.PLAIN, 16));
        bookInfo.setBounds(50,55,500,20);
        bookName=new JLabel("图书名称:");
        bookName.setFont(new Font("宋体", Font.PLAIN, 16));
        bookName.setBounds(50,80,100,20);
        author=new JLabel("作者:");
        author.setFont(new Font("宋体", Font.PLAIN, 16));
        author.setBounds(350,80,100,20);
        publisher=new JLabel("出版社:");
        publisher.setFont(new Font("宋体", Font.PLAIN, 16));
        publisher.setBounds(50,110,100,20);
        publishTime=new JLabel("出版时间:");
        publishTime.setFont(new Font("宋体", Font.PLAIN, 16));;
        publishTime.setBounds(350,110,100,20);
        price=new JLabel("订价:");
        price.setFont(new Font("宋体", Font.PLAIN, 16));
        price.setBounds(50,140,100,20);
        stock=new JLabel("库存量:");
        stock.setFont(new Font("宋体", Font.PLAIN, 16));
        stock.setBounds(350,140,100,20);

        readerInfo=new JLabel("--------------------------读者信息--------------------------");
        readerInfo.setFont(new Font("宋体", Font.PLAIN, 16));
        readerInfo.setBounds(50,170,500,20);
        readerName=new JLabel("读者姓名:");
        readerName.setFont(new Font("宋体", Font.PLAIN, 16));
        readerName.setBounds(50,195,100,20);
        readerType=new JLabel("读者类型:");
        readerType.setFont(new Font("宋体", Font.PLAIN, 16));
        readerType.setBounds(350,195,100,20);
        max_num=new JLabel("最大可借数:");
        max_num.setFont(new Font("宋体", Font.PLAIN, 16));
        max_num.setBounds(50,220,100,20);
        days_num=new JLabel("最大可借天数:");
        days_num.setFont(new Font("宋体", Font.PLAIN, 16));
        days_num.setBounds(350,220,130,20);
        borrowInfo=new JLabel("--------------------------借阅信息--------------------------");
        borrowInfo.setFont(new Font("宋体", Font.PLAIN, 16));
        borrowInfo.setBounds(50,250,500,20);

        /**
         * 文本框
         */
        bookIdField=new JTextField();
        bookIdField.setBounds(120,20,100,20);
        readerIdField=new JTextField();
        readerIdField.setBounds(320,20,100,20);
        bookNameField=new JTextField();
        bookNameField.setEditable(false);
        bookNameField.setBounds(140,80,100,20);
        authorField=new JTextField();
        authorField.setEditable(false);
        authorField.setBounds(430,80,100,20);
        publisherField=new JTextField();
        publisherField.setEditable(false);
        publisherField.setBounds(140,110,100,20);
        //出版时间
        Date date = new Date();
        // 设置 date日期
        datepick1= new JXDatePicker();
        datepick1.setDate(date);
        datepick1.setEditable(false);
        datepick1.setBounds(430,110,100,20);

        priceField=new JTextField();
        priceField.setEditable(false);
        priceField.setBounds(140,140,110,20);
        stockField=new JTextField();
        stockField.setEditable(false);
        stockField.setBounds(430,140,100,20);
        readerNameField=new JTextField();
        readerNameField.setEditable(false);
        readerNameField.setBounds(140,195,100,20);
        readerTypeField=new JTextField();
        readerTypeField.setEditable(false);
        readerTypeField.setBounds(430,195,100,20);
        max_numField=new JTextField();
        max_numField.setEditable(false);
        max_numField.setBounds(140,220,100,20);
        days_numField=new JTextField();
        days_numField.setEditable(false);
        days_numField.setBounds(470,220,60,20);
        borrowNumField=new JTextField();
        borrowNumField.setEditable(false);
        borrowNumField.setBounds(210,275,100,20);
        isBorrowField=new JTextField();
        isBorrowField.setEditable(false);
        isBorrowField.setBounds(250,300,100,20);
        //借阅日期
        Date date2 = new Date();
        // 设置 date日期
        datepick2= new JXDatePicker();
        datepick2.setDate(date2);
        datepick2.setBounds(140,325,100,20);

        /**
         * 借阅者文本框
         */
        borrowNum=new JLabel("该读书已借图书数量:");
        borrowNum.setFont(new Font("宋体", Font.PLAIN, 16));
        borrowNum.setBounds(50,275,200,20);
        isBorrow=new JLabel("该读者是否可借所选图书:");
        isBorrow.setFont(new Font("宋体", Font.PLAIN, 16));
        isBorrow.setBounds(50,300,200,20);
        borrowDate=new JLabel("借阅日期:");
        borrowDate.setFont(new Font("宋体", Font.PLAIN, 16));
        borrowDate.setBounds(50,325,100,20);


        /**
         * 添加到容器
         */
        container.add(bookId);container.add(bookIdField);
        container.add(readerId);container.add(readerIdField);
        container.add(btn_Check);
        container.add(bookInfo);
        container.add(bookName);container.add(bookNameField);
        container.add(author);container.add(authorField);
        container.add(publisher);container.add(publisherField);
        container.add(publishTime);container.add(datepick1);
        container.add(price);container.add(priceField);
        container.add(stock);container.add(stockField);
        container.add(readerInfo);
        container.add(readerName);container.add(readerNameField);
        container.add(readerType);container.add(readerTypeField);
        container.add(max_num);container.add(max_numField);
        container.add(days_num);container.add(days_numField);
        container.add(borrowInfo);
        container.add(borrowNum);container.add(borrowNumField);
        container.add(isBorrow);container.add(isBorrowField);
        container.add(borrowDate);container.add(datepick2);
        container.add(btn_Borrow);container.add(btn_Close);

        setTitle("借阅图书");
        setSize(600,500);
        setLocationRelativeTo(null);
        setResizable(false);
        setVisible(true);
        //setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    private void borrowBook(ActionEvent e) {
        //获取图书字段
        String bookId = bookIdField.getText();
        //获取库存量
        int stock = Integer.parseInt(this.stockField.getText());
        //获取已借数量
        int outloan = Integer.parseInt(borrowNumField.getText());
        //获取最大可借数
        int maxnum= Integer.parseInt(max_numField.getText());
        //获取读者id
        int readerId = Integer.parseInt(readerIdField.getText());
        //获取天数
        int daysNum = Integer.parseInt(days_numField.getText());
        //获取当前日期
        Date date = this.datepick2.getDate();
        java.sql.Date borrowDate = new java.sql.Date(date.getTime());
        //指定归还日期
        Calendar cal = Calendar.getInstance();
        cal.add(Calendar.DATE, daysNum);
        Date newDate = cal.getTime();
        //设置借书和还书的标识
        String if_back="";
        Borrow borrow=borrowService.findBorrowById(readerId, bookId);
        System.out.println(borrow);
        if (borrow==null){
            if_back="1";
            Borrow borrowAdd = new Borrow(bookId,readerId,borrowDate,new java.sql.Date(newDate.getTime()),if_back);
            int i=borrowService.addBorrowDate(borrowAdd);
            if (i>0){
                //每次借阅+1;
                outloan++;
                //最大可借数-1;
                maxnum--;
                //库存-1
                stock--;
                if (stock<=0){
                    this.btn_Borrow.setEnabled(false);
                }else {
                    BookService bookService = new BookService();
                    Book book = new Book(bookId,stock,outloan);
                    Reader reader = new Reader(readerId,maxnum);
                    ReaderService readerService = new ReaderService();
                    //更新读者可借的最大数量
                    int i2 = readerService.updateReaderMaxnum(reader);
                    //更新库存量和已借数量
                    int i1 = bookService.updateBookStockAndOutloan(book);
                    borrowService.addBookandRead(bookId,readerId);
                    if (i1>0&&i2>0){
                        //更新后设置库存文本框
                        stockField.setText(String.valueOf(book.getStock()));
                        borrowNumField.setText(String.valueOf(book.getOutloan()));
                        max_numField.setText(String.valueOf(reader.getMax_num()));
                        JOptionPane.showMessageDialog(null,"借出成功");
                        dispose();
                    }
                }
            }else {
                JOptionPane.showMessageDialog(null,"借出失败");
            }
        }
    }

    //连表查询图书和读者信息
    private void checkReaderIdAndBookId(ActionEvent e) {
        String bookId = bookIdField.getText();
        int readerId = Integer.parseInt(readerIdField.getText());
        //System.out.println(readerId);
        ReaderBorrowBook rbb=borrowService.findBorrowBybookIdAndreaderId(bookId,readerId);
        //System.out.println(rbb);
        if (rbb!=null){
            bookNameField.setText(rbb.getBookname());//书名
            authorField.setText(rbb.getAuthor());//作者
            publisherField.setText(rbb.getPublisher());//出版社
            datepick1.setDate(rbb.getPublish_time());//出版日期
            priceField.setText(String.valueOf(rbb.getPricce()));//价格
            stockField.setText(String.valueOf(rbb.getStock()));//库存
            readerNameField.setText(rbb.getReadername());//读者名
            readerTypeField.setText(rbb.getReadertype());//读者类型
            max_numField.setText(String.valueOf(rbb.getMax_num()));//最大借书量
            days_numField.setText(String.valueOf(rbb.getDays_num()));//最大借书天数
            borrowNumField.setText(String.valueOf(rbb.getOutloan()));//已借书数量
            Borrow borrow=borrowService.findBorrowById(readerId, bookId);

            System.out.println(borrow);
            if (rbb.getMax_num()<=0){
                isBorrowField.setText("无法再借图书");
                //不能点击借书按钮
                btn_Borrow.setEnabled(false);
            }else {
                //可以点击借书按钮
                btn_Borrow.setEnabled(true);
            }
            if (borrow==null){
                    isBorrowField.setText("是");
                    btn_Borrow.setEnabled(true);
            }else {
                //判读是1还是0,从而判断是否被借还是归还
                if (borrow.getIf_back().equals("1")){
                    isBorrowField.setText("否");
                    datepick2.setDate(borrow.getBorrowDate());
                    btn_Borrow.setEnabled(false);
                }else if (borrow.getIf_back().equals("0")){
                    isBorrowField.setText("是");
                    btn_Borrow.setEnabled(true);
                }
            }
        }
    }
}

四、源码获取

源码已经打包了,点击下面蓝色链接获取!

点我获取源码

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

linux系统安装anaconda,并通过java程序调用python程序

虚拟环境准备 首先准备一块空的分区&#xff0c;安装anaconda至少要20g以上才能执行简单程序&#xff0c;这里准备20G的磁盘空间 创建分区,执行以下步骤&#xff0c;之后执行reboot重启 fdisk /dev/sda p n 回车 回车 w查看当前系统创建的分区&#xff0c;我这里是名为sda3的…

JWT攻击手册(非常详细)零基础入门到精通,收藏这一篇就够了

JSON Web Token&#xff08;JWT&#xff09;对于渗透测试人员而言可能是一种非常吸引人的攻击途径&#xff0c;因为它们不仅是让你获得无限访问权限的关键&#xff0c;而且还被视为隐藏了通往以下特权的途径&#xff1a;特权升级&#xff0c;信息泄露&#xff0c;SQLi&#xff…

Pytorch 实现简单的 线性回归 算法

Pytorch实现简单的线性回归算法 简单 tensor的运算 Pytorch涉及的基本数据类型是tensor&#xff08;张量&#xff09;和Autograd&#xff08;自动微分变量&#xff09; import torch x torch.rand(5, 3) #产生一个5*3的tensor&#xff0c;在 [0,1) 之间随机取值 y torch.o…

按位拆分+前缀和,CF 1879D - Sum of XOR Functions

一、题目 1、题目描述 2、输入输出 2.1输入 2.2输出 3、原题链接 1879D - Sum of XOR Functions 二、解题报告 1、思路分析 朴素暴力O(N^2)&#xff0c;考虑优化 由于要求的是异或值乘长度&#xff0c;那么我们可以按位考虑每一位异或值的贡献 我们枚举每一位 每次遍历…

德克萨斯大学奥斯汀分校自然语言处理硕士课程汉化版(第六周) - 预训练模型

预训练模型 1. 预训练模型介绍 1.1. ELMo1.2. GPT1.3. BERT 2. Seq2Seq 2.1. T52.2. BART 3. Tokenization 1. 预训练模型介绍 在预训练语言模型出现之前&#xff0c;统计语言模型&#xff08;如N-gram模型&#xff09;是主流方法。这些模型利用统计方法来预测文本中的下一个…

JVM 常量池汇总

Tips JVM常量池分为静态常量池和运行时常量池&#xff0c;因为Jdk1.7后字符串常量池从运行时常量池存储位置剥离&#xff0c;故很多博客也是区分开来&#xff0c;存储位置和内容注意区别&#xff01; 字符串常量池底层是由C实现&#xff0c;是一个类似于HashTable的数据结构&am…

【Linux】运维小脚本:登录即自动显示系统信息

作为Linux运维工程师&#xff0c;我们经常需要快速掌握系统的状态&#xff0c;包括内存使用、CPU负载等关键信息。手动检查这些信息不仅繁琐&#xff0c;而且效率低下。今天&#xff0c;我要给大家介绍一个实用的小技巧&#xff0c;通过一个简单的脚本&#xff0c;每次登录Linu…

基于振弦采集仪的高层建筑结构安全监测技术研究

基于振弦采集仪的高层建筑结构安全监测技术研究 高层建筑的结构安全监测一直是建筑工程领域的重要课题&#xff0c;振弦采集仪作为一种新兴的监测技术&#xff0c;为解决这一问题提供了有力的工具。本文将从振弦采集仪的原理、应用场景以及优势等方面探讨其在高层建筑结构安全…

Windows 如何查看内核数量?这三种方法都可以查看

任务管理器查看 第一种方法是利用任务管理器来查看 CPU 的内核数量&#xff0c;我们可以使用搜索栏输入任务管理器直接打开&#xff0c;或者在使用快捷键“WinX”打开选项框&#xff0c;选择任务管理器。 然后点击性能模块。 在性能界面&#xff0c;我们点击 CPU 模块&#xf…

在ComfyUI中用LoRA换脸,实现超高相似度

准备工作 首先&#xff0c;确保您拥有一个已经训练好的LoRA。如果你不知道如何训练LoRA&#xff0c;可以看看我之前的文章。 这个LoRA可以仅使用被训练人物的大头照。我们的目标是使用LoRA生成与被训练人物高度相似的脸部&#xff0c;然后将其换到任何身体上&#xff0c;实现…

mysql中 事务的隔离级别与MVCC

大家好。今天我们来讲一下事务的隔离级别和MVCC。在讲之前&#xff0c;我们先创建一张表&#xff0c;方便我们的讲解&#xff1a; CREATE TABLE hero ( number INT, name VARCHAR(100), country varchar(100), PRIMARY KEY (number) ) EngineInnoDB CHARSETutf8;创建完毕后我…

【FreeRTOS】软件定时器 software timer(上)

我们在手机上添加闹钟时&#xff0c;需要指定时间、指定类型(一次性的&#xff0c;还是周期性的)、指定做什么事&#xff1b;还有 一些过时的、不再使用的闹钟。如下图所示&#xff1a; 使用定时器跟使用手机闹钟是类似的&#xff1a; 指定时间&#xff1a;启动定时器和运行回…

GenAI-Arena:首个多模态生成 AI 排名开放平台

生成式 AI 指的是能够生成新内容&#xff08;如图像、视频、文本等&#xff09;的人工智能技术。近年来&#xff0c;生成式 AI 在图像和视频生成领域取得了突破性进展&#xff0c;例如&#xff1a; 艺术创作&#xff1a;生成式 AI 可以根据文本描述生成各种风格的艺术作品&…

10.3 Go 同步与通信

&#x1f49d;&#x1f49d;&#x1f49d;欢迎莅临我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 推荐:「stormsha的主页」…

爬虫案例:建设库JS逆向

爬虫流程 1. 确定目标网址和所需内容 https://www.jiansheku.com/search/enterprise/ 只是个学习案例&#xff0c;所以目标就有我自己来选择&#xff0c;企业名称&#xff0c;法定代表人&#xff0c;注册资本&#xff0c;成立日期 2. 对目标网站&#xff0c;进行分析 动态…

甲板上的战舰|模拟?|每日一题|chatgpt结合更正

文章目录 我的天免费的4o太好用了我的天免费的4o太好用了我的天免费的4o太好用了题目详情思路&#xff1a;关键&#xff1a;chatGPT配合纠正错误思路正确代码&#xff1a; 我的天免费的4o太好用了 我的天免费的4o太好用了 我的天免费的4o太好用了 重要的事情说三遍 题目详情…

HK1-BOX X3刷UBUNTU 24.04,并开启WIFI

端午刚好有点时间&#xff0c;顺便把改完散热的HK1-BOX刷了个最新OC版的UBUNTU 24&#xff0c;这里记录下操作的步骤&#xff1a; 准备材料 HK1-BOX S905X3&#xff1a;注意X4的不行固件没匹配的。建议先改完散热&#xff0c;不然作为7X24小时的机器长时间高温还是很伤硬件的…

什么是SOLIDWORKS科研版

随着科技的不断进步&#xff0c;工程设计和科学研究变得越来越复杂&#xff0c;需要更强大的工具来满足需求。SOLIDWORKS科研版就是在这样的背景下诞生的&#xff0c;它为科研人员和工程师提供了一套全方面、快捷的解决方案&#xff0c;以应对各种科研和工程挑战。 SOLIDWORKS科…

Keil uVision5复制到Word文档后乱码的解决办法

一、问题出现状况 在做嵌入式实验时&#xff0c;我发现在Keil uVision5中正常编写的代码和注释&#xff0c;写入实验报告&#xff08;word&#xff09;中其中文注释就会产生乱码&#xff0c;非常不美观&#xff0c;并且使代码变得杂乱。 如下&#xff1a;Keil uVision5中注释…

RK3588 Debian11进行源码编译安装Pyqt5

RK3588 Debian11进行源码编译安装Pyqt5 参考链接 https://blog.csdn.net/qq_38184409/article/details/137047584?ops_request_misc%257B%2522request%255Fid%2522%253A%2522171808774816800222841743%2522%252C%2522scm%2522%253A%252220140713.130102334…%2522%257D&…