打印三角形 public class TriangleDemo { public static void main(String[] args) { for (int j = 1; j <= 5; j++) { for (int i = 5; i >= j; i--) { System.out.pr ...
分类:
编程语言 时间:
2021-06-30 18:13:09
阅读次数:
0
基于GraphicsMagick工具实现图片文字水印需求,并根据实测情况解决中文水印乱码问题。方案并非完美,欢迎大家一起讨论优化完善。 ...
分类:
其他好文 时间:
2021-06-30 18:10:21
阅读次数:
0
一.Object类 1.toString 一般子类都有覆盖。默认返回:对象的 class 名称 + @ + hashCode 的十六进制字符串。 public String toString() { return getClass().getName() + "@" + Integer.toHexS ...
分类:
其他好文 时间:
2021-06-30 18:09:41
阅读次数:
0
20. 有效的括号](https://leetcode-cn.com/problems/valid-parentheses/) class Solution { public boolean isValid(String s) { Map<Character, Character> map = ne ...
分类:
其他好文 时间:
2021-06-30 18:02:33
阅读次数:
0
简单工厂模式 Shape.java public interface Shape { void draw(); } Circle.java public class Circle implements Shape{ @Override public void draw() { System.out. ...
分类:
编程语言 时间:
2021-06-30 18:01:11
阅读次数:
0
布尔逻辑运算符:返回一个boolean结果 有:! 非、& 与、| 或、^异或 、&&短路与、 || 短路或 短路与:左边为false,右边就不执行 短路或:左边为true,右边就不执行 public static void main(String[] args) { int i = 10; int ...
分类:
编程语言 时间:
2021-06-30 17:59:18
阅读次数:
0
总述:任何集合内部都可以存储其它任何集合 1、List嵌套List public class Test{ public static void main(String[] args){ /* 假如有两个班的学生姓名,它们分别存储在两个集合中: */ //第一个班 ArrayList<String> ...
分类:
其他好文 时间:
2021-06-30 17:53:01
阅读次数:
0
PhantomJS在服务端生成ECharts图片 1. 准备工作 下载 PhantomJS包 点我进入下载页面 下载saintlee-echartsconvert-master包 点我进入下载页面 上传到linux服务器上 2. 部署服务 安装PhantomJS # 解压缩文件 tar xjf ph ...
分类:
Web程序 时间:
2021-06-30 17:43:17
阅读次数:
0
获取List<Map<String, Object>中Map的属性值列表, 获取所有map对象的某个属性列表 ©Copyright 蕃薯耀 2021-06-29 https://www.cnblogs.com/fanshuyao/ /** * 获取List列表中的Map对象属性的值 * @param ...
分类:
其他好文 时间:
2021-06-30 17:38:54
阅读次数:
0
最近公司来了个项目,需要把数据库数据查询,进行组装然后导出为doc文档。查阅了下网上资料,决定使用freeMaker来开发。 首先打开word,编辑文档。然后将文档另存为后缀为ftl的文件。 贴上代码: @ApiImplicitParam(name = "exportReportWord", val ...
分类:
其他好文 时间:
2021-06-30 17:36:11
阅读次数:
0