java读取excel 使用 jxl读取 依赖 <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.12</version> </dependency> ...
分类:
编程语言 时间:
2021-06-02 12:07:16
阅读次数:
0
今天发现个奇怪的事情,有一个项目,用vs2019打开,报错,说是找不到相应的sdk,但是我把这个项目放到桌面,就能打开。 发现在该目录下有一个json文件: { "sdk": { "version": "3.1.403" } } 删除掉就可以了 ...
分类:
Web程序 时间:
2021-06-02 12:01:38
阅读次数:
0
All packages need to be reinstalled under the new version (4.0). I had to first remove and then reinstall all the packages. The following worked for m ...
分类:
其他好文 时间:
2021-06-02 11:43:04
阅读次数:
0
一、前言 在我们使用idea新建maven项目的时候,默认的Language Level为5,这极大的影响了我们编码的体验。那么有没有一种一劳永逸的方法呢,当然是有的。 二、操作步骤 1、maven项目的默认pom.xml文件的配置,详细如下 <?xml version="1.0" encoding ...
分类:
其他好文 时间:
2021-06-02 11:40:06
阅读次数:
0
git 回滚操作 自己写了代码想要回滚,之前自己的方法太耽误时间了,同事教了一个方法可以快速回滚 第一部分:回滚:点击history-->Version Control-->log 同时选中两个版本--> 2、然后回滚; 第二部分提交区 git 有四个区域,1、编辑区,2、暂存区 3、待提交区 4、 ...
分类:
其他好文 时间:
2021-06-02 11:02:07
阅读次数:
0
mvn install:install-file -Dfile=5upay-sdk-java-webox.jar -DgroupId=com.pay -DartifactId=sdk -Dversion=1.0 -Dpackaging=jar -DlocalRepositoryPath=C:\Use ...
分类:
其他好文 时间:
2021-05-25 18:13:36
阅读次数:
0
unionfs 是一个灵活强大的组合fs npm 包,可以方便的进行多fs 实现的组合,比如基于内存的fs 与本地fs 组合实现强大的 npm 扩展以及配置管理。。。 参考代码 package.json { "name": "mem-fs-app", "version": "1.0.0", "mai ...
分类:
其他好文 时间:
2021-05-25 17:54:06
阅读次数:
0
1、pom.xml文件添加依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.62</version> </dependency> 2、将对象转为json格式的字符 ...
分类:
编程语言 时间:
2021-05-25 17:44:13
阅读次数:
0
.net Framwork移植到.net core 步骤: (1)打开.net Framwork工程,卸载相关联的项目 (2)对于窗体和类库项目,只需将 .csproj 替换为下面的内容 1 <Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 ...
分类:
Web程序 时间:
2021-05-25 17:37:12
阅读次数:
0
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <!-- 作用域范围为test --> <scope>test</scope> </dependency> 将<sc ...
分类:
其他好文 时间:
2021-05-24 17:22:10
阅读次数:
0