用列专题

正则表达式用列

1,匹配图片 /<img(.*?)\/?>/i 2,匹配图片(src中不包含某某字符) /<img.*?[\s]src[\s]*=[\'|\"](http((?!album).)*?)[\'|\"].*?[\/]?>/i/<img[^\/]*?[\s]src[\s]*=[\'|\"](((?!album).)*?)[\'|\"].*?[\/]?>/i

CompletableFuture、ListenableFuture高级用列

CompletableFuture 链式 public static void main(String[] args) throws Exception {CompletableFuture<Integer> thenCompose = T1().thenCompose(Compress::T2).thenCompose(Compress::T3);Integer result = thenC

CompletableFuture高级用列

链式 public static void main(String[] args) throws Exception {CompletableFuture<Integer> thenCompose = T1().thenCompose(Compress::T2).thenCompose(Compress::T3);Integer result = thenCompose.get();Syste