当前位置:首页 > 第2页

java web 更改jdk版本后出现红叉

dsttl35年前 (2020-02-10)130
java web 更改jdk版本后出现红叉
错误提示 Description Resource Path Location Type Java compiler level does not match the version of the installed Java project facet. webapi...

tomcat启动速度慢

dsttl35年前 (2019-11-18)125
grep rdrand /proc/cpuinfo #需要cpu支持 yum install rng-tools # 安装rngd服务 systemctl start rngd # 启动服务...

时间转换

dsttl35年前 (2019-09-09)122
import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class D { public static vo...

Gson 解析json时遇到key是数字,关键字,key中带小数点等问题的解决办法

dsttl36年前 (2019-04-24)133
json示例 { "dsttl3.cn": "https://www.dsttl3.cn", "new": "new", "001": "001" } Entity //需引入gson包 import com.google.gson.annotations.SerializedName; // @...

Mac实用技巧——在Finder中显示文件完整路径

dsttl36年前 (2019-04-05)122
Finder默认是不显示路径的,进入某个文件夹时只会显示当前文件夹的名字。 通过下面的命令可以在finder顶部的标题栏上显示完整路径。 在终端输入以下命令并回车: defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES...

把一段代码转换成图片的网站

dsttl36年前 (2019-03-01)137
把一段代码转换成图片的网站carbon...

WordPress使用open-social插件实现QQ登录出现redirect uri is illegal(100010)的问题

dsttl36年前 (2019-02-06)134
WordPress使用open-social插件实现QQ登录时会出现redirect uri is illegal(100010)的问题,说是回调地址出错。 解决方法 打开登录界面,进入开发者模式(Chrome下按F12进入),选择Network选项,这时候再点击QQ第三方登录按钮,在Network...

让终端走代理的几种方法

dsttl36年前 (2019-01-29)139
在终端中直接运行命令 export http_proxy=http://proxyAddress:port 或 export ALL_PROXY=socks5://proxyAddress:port...

maven仓库地址

dsttl36年前 (2019-01-02)137
maven仓库地址: http://mvnrepository.com...

java 调用默认浏览器

dsttl36年前 (2018-08-05)131
Desktop desktop = Desktop.getDesktop(); if (desktop.isDesktopSupported()&& desktop.isSupported(Desktop.Action.BROWSE)) { try { des...