最新发布第70页
排序
推荐一款免费、漂亮的图标Font Awesome
Font Awesome为您提供可缩放的矢量图标,您可以使用CSS所提供的所有特性对它们进行更改,包括:大小、颜色、阴影或者其它任何支持的效果。 基本图标 您可以将Font Awesome图标使用在几乎任何地...
SpringBoot实现FTP文件下载及预览功能
SpringBoot将文件上传到FTP之后,后续的在前端进行文件的下载及预览实现方式如下: 前端代码 // 根据文件路径和文件名进行下载 function downLoadFile(filePath, fileName) { // 后台获取文件 v...
The valid characters are defined in RFC 7230 and RFC 3986错误解决
通常请求地址包含未经编码的中文字符时会出现此错误提示: java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 72...
Java中Timer和ThreadPoolExecutor的区别和比较
今天闲来无事读Java中Timer的源码,发现Timer的注释中有这么一段 Java 5.0 introduced the {@code java.util.concurrent} package and one of the concurrency utilities therein is the {@link...
在CENTOS上源码搭建LNMP环境
前言 1.操作前提: CentOS Linux release 7.5.1804; sudo用户(需要root权限); 2.需要安装的组件: nginx稳定版:nginx-1.14.0; MariaDB 10.3.10 Stable; PHP 7.2.11 Stable; 3.操作步骤: ...
jQuery实现鼠标移动到图片后标题放大出现
jquery图片特效鼠标悬停图片放大展示图片标题滑动显示,鼠标离开后图片缩小默认大小图片标题隐藏。非常实用的jQuery图片鼠标悬停效果。 操作步骤如下: 1.载入相关的jQuery类库 <script src='...
如何解决Chrome的表单自动填充问题?
自动填充会带来隐私和安全性问题,如果非私人电脑这个问题很烦人,解决办法如下: 用户 在浏览器设置,自动填充里取消自动填充: 开发者 设置autocomplete='off'属性。 <input type='text' a...
Window宽度和高度属性
Window属性:innerWidth,innerHeight,outerWidth,outerHeight的区别整理。 定义和用法 innerWidth:返回文档显示区域的宽度,不包括菜单栏、工具栏以及滚动条等; innerheight:返回文档显示区...
Java String日期格式化
SimpleDateFormat fromUser = new SimpleDateFormat('dd/MM/yyyy'); SimpleDateFormat myFormat = new SimpleDateFormat('yyyy-MM-dd'); try { String reformattedStr = myFormat.format(fromUs...



