10 2021 档案
摘要:第一部分: 使用idea 打包工程jar 1.准备好一份 开发好的 可执行的 含有main方法的 工程。 public static void main(String[] args) throws IOException { Properties properties = System.getPro
阅读全文
摘要:将List写入文件: public void writeList2File(List<Long> lines, String filePath) { File file = new File(filePath); // 判断文件是否存在 if (!file.exists()) { file.crea
阅读全文
摘要:为什么需要addEventListener? 先来看一个片段: html代码 <div id="box">追梦子</div> 用on的代码 window.onload = function () { var box = document.getElementById("box"); box.oncl
阅读全文
摘要:xviz github:https://github.com/uber/xviz xviz github的的指南中有以下步骤: # Download KITTI data $ ./scripts/download-kitti-data.sh # Convert KITTI data if neces
阅读全文
摘要:1.1 概述 该部分介绍如何将 KITTI 数据集转换为 XVIZ。这有助于我们了解如何将数据转换为 XVIZ,并在浏览器中对数据进行可视化和探索。 What XVIZ enables 将数据转换为 XVIZ 可以进入一个与特定平台分离的崭新的生态系统,并且可以针对 Web 应用的目标用例进行优化;
阅读全文
摘要:问题1: 反序列化的枚举类: @Message public enum EnumClassd { Unknown (0); @Getter @Setter private Integer code; EnumClassd(Integer code) { this.code = code; } } M
阅读全文
摘要:1、maven <!-- https://mvnrepository.com/artifact/org.msgpack/msgpack --> <dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack</artifactId> <
阅读全文