摘要: 使用的包 <groupId>org.apache.commons</groupId> <artifactId>commons-vfs2</artifactId> <version>2.2</version> <groupId>com.jcraft</groupId> <artifactId>jsch 阅读全文
posted @ 2021-08-06 12:25 Charon! 阅读(1252) 评论(0) 推荐(0)
摘要: 前序表达式 , 中序表达式 , 后序表达式 中序表达式 中序表达式即我们日常使用的表达式,从左往右阅读,结构清晰,但是需要括号改变优先级,对计算机不友好 eg:(1+4)*3+10/5,2*3/(2-1)+3*(4-1) 前序表达式(波兰表示法Polish notation,或波兰记法) 前序表达式 阅读全文
posted @ 2020-10-14 10:58 Charon! 阅读(3197) 评论(0) 推荐(0)
摘要: Maven打jar包排除特定的类和目录 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</ver 阅读全文
posted @ 2020-09-25 11:30 Charon! 阅读(5742) 评论(0) 推荐(0)
摘要: 环境安装 安装jdk 安装maven 安装nexus nexus工具是此次maven私服的构建工具 下载nexus 官网地址:https://www.sonatype.com/download-oss-sonatype 上传到服务器 可以使用FTP工具上传或者使用scp命令上传 解压安装包到指定位置 阅读全文
posted @ 2020-09-25 11:19 Charon! 阅读(356) 评论(0) 推荐(0)