摘要:
根据同一订单号同时在一个事务中对两条记录做了修改操作,导致锁表。 ##数据初始化,插入模拟数据。 ##窗口1 模拟START TRANSACTION;修改操作COMMIT; ##窗口2 模拟START TRANSACTION;修改操作 COMMIT; /** 超时报错 错误代码: 1205Lock 阅读全文
摘要:
1.异常处理 Exception in thread "main" org.apache.poi.openxml4j.exceptions.OLE2NotOfficeXmlFileException: The supplied data appears to be in the OLE2 Forma 阅读全文
摘要:
1.Thread 2.Runnable 3.Callable 阅读全文
摘要:
/** * @param args */ public static void main(String[] args) throws Exception{ ZipOutputStream zos = null; zos = new ZipOutputStream(new FileOutputStream("c:\\temp7.zip"... 阅读全文
摘要:
1.生成zip 2.解压缩 阅读全文
摘要:
1.方法1 2.方法2 阅读全文
摘要:
/** * */ package testJava.java.foreach; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Queue; import java.util.Stack; /** ... 阅读全文
摘要:
#mysql查看连接数SHOW VARIABLES LIKE '%max_connections%'; # max_connections 最大连接数 SHOW VARIABLES LIKE '%connection%';# PROCESSLIST; # 通过观察sql来判断。SHOW FULL P 阅读全文
摘要:
1.curl 地址 或者 wget url地址 [hxxxx@iZ23vy2msooZ ~]$ curl www.baidu.com<!DOCTYPE html><!--STATUS OK--><html> <head><meta http-equiv=content-type content=te 阅读全文
摘要:
邮件处理,查找null手机号码 G1=VLOOKUP(F1,A:B,2,FALSE) H1=VLOOKUP(F1,A:F,7,FALSE)参数1是:查找列,参数2是:范围,参数3是:查找的是第几列,参数4是:模糊匹配。 选择一个单元格的右下角的十字,双击,则查询出全列。 阅读全文