能实现图片裁剪、缩放、水印等功能,接口调用非常简单: maven引入库: <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dep ...
分类:
编程语言 时间:
2021-06-30 17:54:58
阅读次数:
0
1. 使用shouldComponentUpdate避免重复渲染 以下代码,只有在count为3的时候才会触发更新 class ClassChild extends React.Component { constructor() { super(); } render() { console.log ...
分类:
其他好文 时间:
2021-06-30 17:54:36
阅读次数:
0
引入maven <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>3.5.1</version> </dependency> 将protoc文件生成j ...
分类:
编程语言 时间:
2021-06-29 16:11:55
阅读次数:
0
1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
移动开发 时间:
2021-06-29 16:09:22
阅读次数:
0
工具类 package io.renren.utils; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.text.DecimalFormat; import j ...
分类:
其他好文 时间:
2021-06-29 16:02:10
阅读次数:
0
pom.xml导入pinyin4j的依赖 <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.1</version> </dependency> 汉字转拼音工具类 pa ...
分类:
编程语言 时间:
2021-06-29 15:57:55
阅读次数:
0
1.购买阿里云 1)购买链接:https://developer.aliyun.com/plan/grow-up 2)购买完毕后,重置服务器root用户密码 3)连接阿里云服务器 方法一:通过可视化软件Xshel // 使用前绿化,新建一个会话 方法二:windows终端 >ssh root@47. ...
分类:
其他好文 时间:
2021-06-29 15:48:15
阅读次数:
0
svn中的revert和update 今天有人问到revert和update的问题。刚开始还真被问住了。因为感觉revert和update都可以将本地的copy更新到以前的一个版本,会有什么不同呢? 查了些资料,并做了个试验,终于发现了它们的不同。 假设当前的最新版本是6,但是,最新的一次提交不是你 ...
分类:
其他好文 时间:
2021-06-29 15:39:53
阅读次数:
0
1.打开Pycharm->VCS->Enable Version Control Integration->Git->remote->输入SSH 2.Define Remotes 3.复制SSH 到GIt Open Git bash 4.复制最后黄色的到git ,添加ssh key 5.复制SSH ...
分类:
其他好文 时间:
2021-06-29 15:28:35
阅读次数:
0
自动类型转换 byte b=3; int x=b;//将byte类型的变量b转换为int类型无需特殊声明 强制类型转换 两种类型不兼容,或者目标类型取值范围小于源类型时,自动类型转换无法进行,这时需要强制类型转换。 如: public class test { public static void ...
分类:
编程语言 时间:
2021-06-29 15:25:02
阅读次数:
0