摘要:
public class Solution3 { public static ExecutorService executorService = Executors.newFixedThreadPool(10); public static void main(String[] args) thro 阅读全文
摘要:
public static void main(String[] args) throws IOException { String a = "a-b-c-d"; //截取最后一个‘-’前面的所有内容 String str1 = a.substring(0,a.lastIndexOf("-")); 阅读全文
摘要:
在 jdk 1.5 之前,我们在定义一个集合时,无须给定元素类型: List list = new ArrayList(); ArrayList al = new ArrayList();但是,在 jdk 1.5 之后,Java增加了泛型机制,它要求我们在定义集合时给定元素类型: List<Stri 阅读全文
摘要:
在application中添加限制 : 在springBoot 1.x 版本下使用 spring.http.multipart.max-file-size =100M spring.http.multipart.max-request-size =100M 在springBoot 2.x 版本下使用 阅读全文
摘要:
众所周知 在android中static 修饰的会被称之为 静态常量,静态变量, 静态方法 ,还有就是静态代码块,用static{ // 代码块 非static修饰的方法,变量,常量, 是不能再静态代码块中使用的 } 表示。 static修饰的 是跟着类走的, 而不是跟随对象,这个大家都是知道的。 阅读全文
摘要:
一、问题在使用FileInputStream时会遇到如下问题1和问题2。问题1: java.io.FileNotFoundException: .\xxx\xxx.txt (系统找不到指定的路径。) 问题2: java.io.FileNotFoundException: .\xx\xx.txt (拒 阅读全文
摘要:
查找文件 模糊匹配查询 find / -name 'zookeeper*' 精准查询 find / -name redis 启动zookeeper在每台机器上运行 bin/zkServer.sh start查看运行状态:bin/zkServer.sh status 启动redis./redis-se 阅读全文
摘要:
if(!ArrayList.asList("1","2","3").contains("3")){ return "集合中包含数字‘3’ "; } 注意,asList()方法不能够使用add(),remove(),clear()方法,否则会报java.lang.UnsupportedOperatio 阅读全文