java中使用POI生成Excel并导出

news2024/11/23 3:24:11

注:本文章中代码均为本地Demo版本,若后续代码更新将不会更新文章

需求说明及实现方式

  1. 根据从数据库查询出的数据,将其写入excel表并导出

    我的想法是通过在实体属性上写自定义注解的方式去完成。因为我们在代码中可以通过反射的方式去获取实体类中全部的注解及属性名称等等。我们可以在自定义注解中声明一个参数value,这里面就存储其标题,这样我们

  2. 数据查询type不同,则显示的标题数量不同

    在注解类中增加type参数,只有满足对应type的属性会被导出至excel中

  3. 数据查询type不同,则显示的标题不同(同一个字段)

    优化参数value,判断传入的value是否为json字符串,如果是json字符串则找到其与type对应的value

  4. 数据的格式化(时间类型格式化、数据格式化显示)

    数据格式化显示通过在注解类中增加dict参数,该参数传入json字符串。

本来我是想着通过easyExcel来完成这些功能,但是由于项目中已经引入了POI的3.9版本依赖,然后easyExcel中POI的依赖版本又高于该版本,而且不管是版本升级还是版本排除降级,总会有一个出现问题,最终也只能通过最基础的POI编写代码实现。

需求完成

依赖引入:

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.9</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.9</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>3.9</version>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.33</version>
        </dependency>

image-20230707220251587

通用代码

  1. ExcelExport

    • value:标题,也可为json字符串
    • dict:json字符串格式的字典,格式如User中所示
    • type:数组类型,查询数据type类型是什么值时这个字段会写入excel中。如我type = {"a"},则我在查询数据时传入的type为b则不会将这个字段写入excel中,如果传入的是a则会正常写入。
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.FIELD)
    public @interface ExcelExport {
        String value();
        String dict() default "";
        String[] type() default {};
    }
    
  2. User

    • @ExcelExport:即自定义的注解,其中值的含义在上面已经说清楚了
    @Data
    @AllArgsConstructor
    @NoArgsConstructor
    @Accessors(chain = true)
    public class User {
        @ExcelExport(value = "用户名",type = {"a"})
        private String userName;
        @ExcelExport(value = "{a: '年龄',b: '年纪'}",type = {"a","b"})
        private Integer age;
        @ExcelExport(value = "性别",
                dict = "[{ value: \"0\", label: \"女\" }," +
                        "{ value: \"1\", label: \"男\" }]",
                type = {"a","b"})
        private Integer sex;
        @ExcelExport(value = "生日",type = {"b"})
        private Date birthday;
    }
    
    

版本1

版本1中未实现数据查询type不同,则显示的标题不同(同一个字段)这一功能,如需要加请看PoiExcelUtil中writeTitleCellData方法。

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.lzj.anno.ExcelExport;
import com.lzj.entity.User;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.*;
import org.springframework.util.StringUtils;

import java.io.*;
import java.lang.reflect.Field;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

/**
 * <p>
 *
 * </p>
 *
 * @author:雷子杰
 * @date:2023/7/4
 */
public class One {
    public static void main(String[] args) throws IOException {
        List<User> userList = new ArrayList<>();
        userList.add(new User("lzj1",1,1,new Date()));
        userList.add(new User("lzj2",2,0,new Date()));
        userList.add(new User("lzj3",3,1,new Date()));
        userList.add(new User("lzj4",4,0,new Date()));

        //声明XSSF对象
        XSSFWorkbook xssfSheets = new XSSFWorkbook();
        //创建sheet
        XSSFSheet userSheet = xssfSheets.createSheet("user");

        //创建标题字体
        XSSFFont titleFont = xssfSheets.createFont();
        titleFont.setBold(true);//加粗
        titleFont.setFontName("微软雅黑");
        titleFont.setFontHeightInPoints((short) 12);//字体大小
        //创建通用字体
        XSSFFont commonFont = xssfSheets.createFont();
        commonFont.setBold(false);//加粗
        commonFont.setFontName("微软雅黑");
        commonFont.setFontHeightInPoints((short) 12);//字体大小

        // 创建标题行单元格样式
        CellStyle titleCellStyle = xssfSheets.createCellStyle();
        titleCellStyle.setBorderTop(CellStyle.BORDER_THIN);//框线
        titleCellStyle.setBorderBottom(CellStyle.BORDER_THIN);
        titleCellStyle.setBorderLeft(CellStyle.BORDER_THIN);
        titleCellStyle.setBorderRight(CellStyle.BORDER_THIN);
        titleCellStyle.setAlignment(CellStyle.ALIGN_CENTER);//水平对齐方式
        titleCellStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);//垂直对齐方式
        titleCellStyle.setFont(titleFont);//字体样式
        titleCellStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);//单元格前景色
        titleCellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);//填充单元格

        //创建通用行单元格样式
        CellStyle commonCellStyle = xssfSheets.createCellStyle();
        commonCellStyle.setBorderTop(CellStyle.BORDER_THIN);
        commonCellStyle.setBorderBottom(CellStyle.BORDER_THIN);
        commonCellStyle.setBorderLeft(CellStyle.BORDER_THIN);
        commonCellStyle.setBorderRight(CellStyle.BORDER_THIN);
        commonCellStyle.setAlignment(CellStyle.ALIGN_CENTER);
        commonCellStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
        commonCellStyle.setFont(commonFont);
        commonCellStyle.setWrapText(true);//自动换行

        //获取实体类中全部属性
        Field[] fields = User.class.getDeclaredFields();
        //当前行
        int currentRow = 0;
        //当前列
        int currentColumn = 0;
        //行高
        float rowHeight = 40.1f;
        //列宽
        int columnWidth = 33 * 256;
        //创建行
        XSSFRow row = userSheet.createRow(currentRow);
        当前行+1
        //currentRow++;

        //创建标题行
        // 遍历每个字段
        for (Field field : fields) {
            // 检查字段是否带有Explanation注解
            if (field.isAnnotationPresent(ExcelExport.class)) {
                // 获取Explanation注解实例
                ExcelExport explanation = field.getAnnotation(ExcelExport.class);
                // 获取注解中的解释
                String value = explanation.value();

                //创建单元格,传入值,设置单元格样式
                XSSFCell cell = row.createCell(currentColumn);
                cell.setCellValue(value);
                cell.setCellStyle(titleCellStyle);

                //设置行高度
                row.setHeightInPoints(rowHeight);
                //设置列的宽度
                userSheet.setColumnWidth(currentColumn,columnWidth);
                //当前列+1
                currentColumn++;
            }
        }
        //重置当前列
        currentColumn = 0;

        //创建数据行
        for (User user : userList) {
            //每次循环时重置列
            currentColumn = 0;
            //当前行+1
            currentRow++;
            //创建行
            row = userSheet.createRow(currentRow);
            for (Field field : fields) {
                if (field.isAnnotationPresent(ExcelExport.class)) {
                    try {
                        //解除private限制
                        field.setAccessible(true);

                        // 获取Explanation注解实例
                        ExcelExport explanation = field.getAnnotation(ExcelExport.class);
                        // 获取属性的值
                        Object value = field.get(user);

                        //日期类型格式化
                        if (value != null && field.getType() == Date.class){
                            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
                            value = sdf.format(value);
                        }
                        //获取对应字典
                        String dict = explanation.dict();
                        if (!StringUtils.isEmpty(dict) && value != null){
                            //JSONObject jsonObject = JSON.parseObject(dict);
                            List<String> list = JSON.parseArray(dict, String.class);
                            for (String item : list) {
                                JSONObject jsonObject = JSON.parseObject(item);
                                if(value == null ? false : jsonObject.getString("value").equals(value.toString()) ){
                                    value = jsonObject.getString("label");
                                    break;
                                }
                            }
                            //value = jsonObject.get(value.toString());
                        }
                        //创建单元格,传入值,设置单元格样式
                        XSSFCell cell = row.createCell(currentColumn);
                        cell.setCellValue(value == null?"":value.toString());
                        cell.setCellStyle(commonCellStyle);

                        //设置行高度
                        row.setHeightInPoints(rowHeight);
                        //当前列+1
                        currentColumn++;

                    } catch (IllegalAccessException e) {
                        e.printStackTrace();
                    }
                }
            }
        }

        // 将生成的excel文件输出流转为字节数组
        byte[] bytes = null;
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        xssfSheets.write(outputStream);
        outputStream.close();
        bytes = outputStream.toByteArray();

        //读取字节数组为文件输入流
        InputStream inputStream = new ByteArrayInputStream(bytes);
        inputStream.close();


        //在声明一个输出流将文件下载到本地
        File file = new File("C:\\Users\\86158\\Desktop\\zzzzzz.xlsx");
        BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(file));
        //将bytes中的内容写入
        bufferedOutputStream.write(bytes);
        //刷新输出流,否则不会写出数据
        bufferedOutputStream.flush();
        bufferedOutputStream.close();


    }
}

版本2

版本二相比与版本1,其主要优势是将POI相关操作都封装进了PoiExcelUtil中。

  1. PoiExcelUtil

    import com.alibaba.fastjson.JSON;
    import com.alibaba.fastjson.JSONObject;
    import com.lzj.anno.ExcelExport;
    import org.apache.poi.hssf.usermodel.HSSFCellStyle;
    import org.apache.poi.hssf.util.HSSFColor;
    import org.apache.poi.ss.usermodel.CellStyle;
    import org.apache.poi.xssf.usermodel.*;
    import org.springframework.util.StringUtils;
    
    import java.lang.reflect.Field;
    import java.text.SimpleDateFormat;
    import java.util.*;
    
    /**
     * <p>
     *
     * </p>
     *
     * @author:雷子杰
     * @date:2023/7/6
     */
    public class PoiExcelUtil {
    
        /**
         * 获取标题字体
         * @param xssfWorkbook
         * @return
         */
        public static XSSFFont getTitleFont(XSSFWorkbook xssfWorkbook){
            //创建标题字体
            XSSFFont titleFont = xssfWorkbook.createFont();
            titleFont.setBold(true);//加粗
            titleFont.setFontName("微软雅黑");
            titleFont.setFontHeightInPoints((short) 12);//字体大小
    
            return titleFont;
        }
    
        /**
         * 获取通用字体
         * @param xssfWorkbook
         * @return
         */
        public static XSSFFont getCommonFont(XSSFWorkbook xssfWorkbook){
            //创建通用字体
            XSSFFont commonFont = xssfWorkbook.createFont();
            commonFont.setBold(false);//加粗
            commonFont.setFontName("微软雅黑");
            commonFont.setFontHeightInPoints((short) 12);//字体大小
    
            return commonFont;
        }
    
        /**
         * 获取标题单元格样式
         * @param xssfWorkbook
         * @param xssfFont
         * @return
         */
        public static CellStyle getTitleCellStyle(XSSFWorkbook xssfWorkbook , XSSFFont xssfFont){
            // 创建标题行单元格样式
            CellStyle titleCellStyle = xssfWorkbook.createCellStyle();
            titleCellStyle.setBorderTop(CellStyle.BORDER_THIN);//框线
            titleCellStyle.setBorderBottom(CellStyle.BORDER_THIN);
            titleCellStyle.setBorderLeft(CellStyle.BORDER_THIN);
            titleCellStyle.setBorderRight(CellStyle.BORDER_THIN);
            titleCellStyle.setAlignment(CellStyle.ALIGN_CENTER);//水平对齐方式
            titleCellStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);//垂直对齐方式
            titleCellStyle.setFont(xssfFont);//字体样式
            titleCellStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);//单元格前景色
            titleCellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);//填充单元格
    
            return titleCellStyle;
        }
    
        /**
         * 获取通用单元格样式
         * @param xssfWorkbook
         * @param xssfFont
         * @return
         */
        public static CellStyle getCommonCellStyle(XSSFWorkbook xssfWorkbook, XSSFFont xssfFont){
            //创建通用行单元格样式
            CellStyle commonCellStyle = xssfWorkbook.createCellStyle();
            commonCellStyle.setBorderTop(CellStyle.BORDER_THIN);
            commonCellStyle.setBorderBottom(CellStyle.BORDER_THIN);
            commonCellStyle.setBorderLeft(CellStyle.BORDER_THIN);
            commonCellStyle.setBorderRight(CellStyle.BORDER_THIN);
            commonCellStyle.setAlignment(CellStyle.ALIGN_CENTER);
            commonCellStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
            commonCellStyle.setFont(xssfFont);
            commonCellStyle.setWrapText(true);//自动换行
    
            return commonCellStyle;
        }
    
        /**
         * 写入单个单元格数据
         * @param row 行对象
         * @param xssfSheet sheet对象
         * @param value 单元格的值
         * @param cellStyle 单元格样式
         * @param rowHeight 行高
         * @param columnWidth 列宽
         */
        public static void writeCellData(XSSFRow row, XSSFSheet xssfSheet , Object value ,CellStyle cellStyle,Integer currentColumn,Float rowHeight,Integer columnWidth){
    
            //创建单元格,传入值,设置单元格样式
            XSSFCell cell = row.createCell(currentColumn);
            cell.setCellValue(value == null ? "" : value.toString());
            cell.setCellStyle(cellStyle);
            //设置行高度
            row.setHeightInPoints(rowHeight);
            //设置列的宽度
            xssfSheet.setColumnWidth(currentColumn,columnWidth);
        }
    
        /**
         *
         * @param row 行对象
         * @param xssfSheet sheet对象
         * @param cellStyle 单元格样式
         * @param fields 反射获取得到的实体对象的全部属性
         * @param currentColumn 当前列
         * @param rowHeight 行高
         * @param columnWidth 列宽
         * @param type 类型
         */
        public static void writeTitleCellData(XSSFRow row,XSSFSheet xssfSheet,CellStyle cellStyle,Field[] fields,Integer currentColumn,Float rowHeight,Integer columnWidth,String type){
            //创建标题行
            // 遍历每个字段
            for (Field field : fields) {
                // 检查字段是否带有ExcelExport注解
                if (field.isAnnotationPresent(ExcelExport.class)) {
                    // 获取Explanation注解实例
                    ExcelExport explanation = field.getAnnotation(ExcelExport.class);
    
                    //判断是否是需要写入的数据类型
                    String[] typeArray = explanation.type();
                    Set<String> set = new HashSet<>(Arrays.asList(typeArray));
                    if (!set.contains(type)){
                     continue;
                    }
                    // 获取注解中的解释
                    String value = explanation.value();
                    //判断value是否是json格式数据
                    boolean isJson = true;
                    try{
                        Object parse = JSON.parse(value);
                    }catch (Exception e){
                        isJson = false;
                    }
                    if (isJson == true){//如果是json格式数据,则给他对应对应类型的值
                        JSONObject jsonObject = JSON.parseObject(value);
                        value = jsonObject.getString(type);
                    }
    
                    //写入单元格数据
                    PoiExcelUtil.writeCellData(row,xssfSheet,value,cellStyle,currentColumn,rowHeight,columnWidth);
                    //当前列+1
                    currentColumn++;
                }
            }
        }
    
        /**
         * 将集合数据全部写入单元格
         * @param list 需要写入excel的集合数据
         * @param currentRow 当前行
         * @param currentColumn 当前列
         * @param row 行对象
         * @param xssfSheet sheet对象
         * @param cellStyle 单元格样式
         * @param fields 反射获取得到的实体对象的全部属性
         * @param rowHeight 行高
         * @param columnWidth 列宽
         * @param type 类型
         * @param <T>
         */
        public static <T> void writeCommonRowCellData(List<T> list,Integer currentRow ,Integer currentColumn, XSSFRow row,XSSFSheet xssfSheet,CellStyle cellStyle,Field[] fields,Float rowHeight,Integer columnWidth,String type){
            //创建数据行
            for (T obj : list) {
                //每次循环时重置列
                currentColumn = 0;
                //当前行+1
                currentRow++;
                //创建行
                row = xssfSheet.createRow(currentRow);
                for (Field field : fields) {
                    // 检查字段是否带有ExcelExport注解
                    if (field.isAnnotationPresent(ExcelExport.class)) {
                        try {
                            //解除private限制
                            field.setAccessible(true);
                            // 获取Explanation注解实例
                            ExcelExport explanation = field.getAnnotation(ExcelExport.class);
    
                            //判断是否是需要写入的数据类型
                            String[] typeArray = explanation.type();
                            Set<String> set = new HashSet<>(Arrays.asList(typeArray));
                            if (!set.contains(type)){
                                continue;
                            }
    
                            // 获取属性的值
                            Object value = field.get(obj);
                            //日期类型格式化
                            if (value != null && field.getType() == Date.class){
                                SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
                                value = sdf.format(value);
                            }
                            //获取对应字典
                            String dict = explanation.dict();
                            if (!StringUtils.isEmpty(dict) && value != null){
                                List<String> parseArray = JSON.parseArray(dict, String.class);
                                for (String item : parseArray) {
                                    JSONObject jsonObject = JSON.parseObject(item);
                                    if(value == null ? false : jsonObject.getString("value").equals(value.toString()) ){
                                        value = jsonObject.getString("label");
                                        break;
                                    }
                                }
                            }
                            //写入单元格数据
                            PoiExcelUtil.writeCellData(row,xssfSheet,value,cellStyle,currentColumn,rowHeight,columnWidth);
                            //当前列+1
                            currentColumn++;
    
                        } catch (IllegalAccessException e) {
                            e.printStackTrace();
                        }
                    }
                }
            }
        }
    
    }
    
    
  2. Two

    import com.lzj.entity.User;
    import org.apache.poi.ss.usermodel.CellStyle;
    import org.apache.poi.xssf.usermodel.*;
    
    import java.io.*;
    import java.lang.reflect.Field;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    
    /**
     * <p>
     *
     * </p>
     *
     * @author:雷子杰
     * @date:2023/7/4
     */
    public class Two {
        public static void main(String[] args) throws IOException {
            List<User> userList = new ArrayList<>();
            userList.add(new User("lzj1",1,1,new Date()));
            userList.add(new User("lzj2",2,0,new Date()));
            userList.add(new User("lzj3",3,1,new Date()));
            userList.add(new User("lzj4",4,0,new Date()));
    
            //声明XSSF对象
            XSSFWorkbook xssfWorkbook = new XSSFWorkbook();
            //创建sheet
            XSSFSheet userSheet = xssfWorkbook.createSheet("user");
    
            //创建标题字体
            XSSFFont titleFont = PoiExcelUtil.getTitleFont(xssfWorkbook);
            //创建通用字体
            XSSFFont commonFont = PoiExcelUtil.getCommonFont(xssfWorkbook);
            // 创建标题行单元格样式
            CellStyle titleCellStyle = PoiExcelUtil.getTitleCellStyle(xssfWorkbook,titleFont);
            //创建通用行单元格样式
            CellStyle commonCellStyle = PoiExcelUtil.getCommonCellStyle(xssfWorkbook,commonFont);
            //获取实体类中全部属性
            Field[] fields = User.class.getDeclaredFields();
            //当前行
            int currentRow = 0;
            //当前列
            int currentColumn = 0;
            //行高
            float rowHeight = 40.1f;
            //列宽
            int columnWidth = 33 * 256;
            //创建行
            XSSFRow row = userSheet.createRow(currentRow);
            //创建标题行
            PoiExcelUtil.writeTitleCellData(row,userSheet,titleCellStyle,fields,currentColumn,rowHeight,columnWidth,"b");
            //重置当前列
            currentColumn = 0;
            //创建数据行
            PoiExcelUtil.writeCommonRowCellData(userList,currentRow,currentColumn,row,userSheet,commonCellStyle,fields,rowHeight,columnWidth,"b");
    
    
            // 将生成的excel文件输出流转为字节数组
            byte[] bytes = null;
            ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
            xssfWorkbook.write(outputStream);
            outputStream.close();
            bytes = outputStream.toByteArray();
    
            //读取字节数组为文件输入流
            InputStream inputStream = new ByteArrayInputStream(bytes);
            inputStream.close();
    
    
            //在声明一个输出流将文件下载到本地
            File file = new File("C:\\Users\\86158\\Desktop\\zzzzzz.xlsx");
            BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(file));
            //将bytes中的内容写入
            bufferedOutputStream.write(bytes);
            //刷新输出流,否则不会写出数据
            bufferedOutputStream.flush();
            bufferedOutputStream.close();
    
        }
    }
    

结果展示

这是我初始化时的数据

image-20230707222652235

下面的是我type参数不同时的数据,均是以版本2来进行的写入导出。type参数修改位置如下:

image-20230707222907224

type参数为a

image-20230707222436137

type参数为b

image-20230707222633656

总结

在项目开发过程中总会遇到各式各样的问题,只有不断的学习,不断的积累,自身水平才能提高。

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

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

相关文章

js小写金额转大写 自动转换

// 小写转为大写convertCurrency(money) {var cnNums [零, 壹, 贰, 叁, 肆, 伍, 陆, 柒, 捌, 玖]var cnIntRadice [, 拾, 佰, 仟]var cnIntUnits [, 万, 亿, 兆]var cnDecUnits [角, 分, 毫, 厘]// var cnInteger 整var cnIntLast 元var maxNum 999999999999999.9999var…

vulnhub靶场red:1教程

靶场搭建 靶机下载地址&#xff1a;Red: 1 ~ VulnHub 难度&#xff1a;中等 信息收集 arp-scan -l 这里没截图忘记了&#xff0c;就只是发现主机 扫描端口 nmap --min-rate 1000 -p- 192.168.21.130 nmap -sT -sV -sC -O -p22,80 192.168.21.130 先看80端口 看到链接点一…

怎么又快又准的确定业务系统属于等保几级?

等保2.0政策已经落地严格执行了一段时间&#xff0c;但大家对于等保政策还有很多不清楚。这不不少人在问&#xff0c;怎么又快有准的确定业务系统属于等保几级&#xff1f; 怎么又快又准的确定业务系统属于等保几级&#xff1f; 【回答】&#xff1a;根据《信息安全等级保护管…

AtcoderABC255场

A - You should output ARC, though this is ABC.A - You should output ARC, though this is ABC. 题目大意 给定整数R和C以及一个2x2矩阵A&#xff0c;需要输出A R,C的值。 思路分析 简单的矩阵查找。根据给定的索引R和C&#xff0c;找到矩阵A中相应位置的元素&#xff0c…

实例014 OutLook界面

实例说明 程序主界面包括菜单栏、工具栏、状态栏和树状视图。OutLook界面美观、友好&#xff0c;是一个很实用的程序主界面&#xff0c;并且菜单栏和工具栏是可移动的。运行本例效果如图1.14所示。 图1.14 Out Look界面 技术要点 一般程序的菜单栏和工具栏是不可移动的&…

【Ajax】笔记-服务端响应JSON数据

服务端响应JSON数据 构建测试案例 键盘按键触发请求服务端&#xff1a; 键盘按下触发事件 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width,…

项目中前端如何实现无感刷新 token!

场景&#xff1a;线上平台有时会出现用户正在使用的时候&#xff0c;突然要用户去进行登录&#xff0c;这样会造成很不好的用户体验。 1.请求采用的是axios 2.平台的采用的 JWT(JSON Web Tokens) 进行用户登录鉴权。 原因&#xff1a; 1.突然跳转到登录页面&#xff0c;是…

【IVI】EVS 应用

EVS 应用 1、EVS启动2、EvsStateControl.cpp 控制管理2.1 EvsStateControl初始化2.2 EvsVehicleListener.h唤起处理EvsStateControl::updateLoop() 3、EVS 应用逻辑流程 android12-release 增强型视觉系统 (EVS) 1、EVS启动 Android 包含与 EVS 管理器和车载 HAL 通信的 EVS 应…

CAD2021安装教程适合新手小白【附安装包和手册】

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言一、下载文件二、使用步骤1.安装软件前&#xff0c;断开电脑网络&#xff08;拔掉网线、关闭WIFI&#xff09;2、鼠标右击【AutoCAD2021(64bit)】压缩包选择【解…

解密:GPT-4框架与训练过程,数据集组成,并行性的策略,专家权衡,推理权衡等细节内容

大家好&#xff0c;我是微学AI&#xff0c;今天给大家解密一下GPT-4框架与训练过程&#xff0c;数据集组成&#xff0c;并行性的策略&#xff0c;专家权衡&#xff0c;推理权衡等细节内容。2023年3月14日&#xff0c;OpenAI发布GPT-4&#xff0c;然而GPT-4的框架没有公开&#…

Nacos服务注册和配置中心(Config,Eureka,Bus)2

Nacos数据模型 Nacos领域模型,Namespace命名空间、Group分组、集群这些都是为了进行归类管理&#xff0c;把服务和配置文件进行归类&#xff0c;归类之后就可以实现一定的效果&#xff0c;比如隔离。对于服务来说&#xff0c;不同命名空间中的服务不能够互相访问调用 N…

msvcr110.dll丢失的解决方法分享,教你如何快速解决

首先介绍msvcr110.dll是什么&#xff1f;下面再介绍解决方法。 msvcr110.dll文件它提供了一系列用于C编程的函数和资源。这个文件通常用于支持使用了C语言编写的程序&#xff0c;如一些游戏、图形应用程序、数据库管理工具等。 与msvcp110.dll文件类似&#xff0c;msvcr110.dl…

Linux系统编程(守护进程)

文章目录 前言一、守护进程概念二、空洞文件三、创建守护进程总结 前言 本篇文章我们来讲解守护进程&#xff0c;守护进程在进程中是一个比较重要的概念&#xff0c;在笔试面试中也经常考到&#xff0c;这篇文章就带大家来学习一下什么是守护进程。 一、守护进程概念 守护进…

golang IDE 使用 go-1.7 无法识别 goroot问题

问题 当前使用了 golang IDE 要设定 go-1.17 版本作为默认 GOROOT 系统环境变量已经定义好 打开了 ide 会出现下面问题&#xff0c;选择 1.17 后会出现下面报错 error message The selected directory is not a valid horne for GO SDK 解决方法 修改 $GOROOT 下文件增加一个变…

动态表单实现原理

目录 动态表单是什么 动态表单的关键 前后端职责 数据库与表结构 功能实现与改进建议 动态表单是什么 静态表单是很常见&#xff0c;也是常规做法&#xff0c;其表单的结构是固定的&#xff0c;通常情况下一个表单对应数据库的一张表&#xff0c;表单中一个数据项对应数据表的一…

物业小程序制作:提升管理效率与服务质量

随着物业管理的日益复杂&#xff0c;物业小程序成为了提高管理效率和提供优质服务的重要工具。物业小程序旨在提供高效的物业管理服务。通过物业小程序&#xff0c;物业公司能够方便地与业主进行信息交流、报修处理等操作。 物业小程序的好处 提高管理效率&#xff1a;物业小程…

暑假第七天打卡

离散&#xff1a; 主析取范式和主合取范式的应用&#xff1a; &#xff08;1&#xff09;求公式成真与成假赋值&#xff1a; 化为主析取范式后&#xff0c;下标化为二进制就是成真赋值&#xff0c;不在下标里的就是成假赋值 化为主合取范式后&#xff0c;下标化为二进制就是…

2.Postgresql--array

CREATE TABLE city(country character varying(64),city character varying(64) );INSERT INTO city VALUES (中国,台北), (中国,香港), (中国,上海), (日本,东京), (日本,大阪);select country,string_agg(city,; order by city desc) from city group by countryselect coun…

React native 已有项目升级兼容web

基础 概念 | webpack 中文文档 | webpack 中文文档 | webpack 中文网 深入理解Webpack及Babel的使用 - 掘金 Introduction to React Native for Web // React Native for Web Webpack 是一个现代的 JavaScript 应用程序的静态模块打包工具&#xff0c;它将应用程序所依赖的各…

DynaSLAM2 2020论文翻译

DynaSLAM2:紧耦合的多目标追踪和SLAM 摘要 - 场景刚度的假设在视觉SLAM算法中很常见。但是&#xff0c;它限制了它们在人口稠密的现实环境中的适用性。此外&#xff0c;大多数智力包括自动驾驶&#xff0c;多机器人协作和增强/虚拟现实&#xff0c;都需要对周围环境进行明确的…