随笔 - 30
文章 - 4
评论 - 0
阅读 -
18474
03 2022 档案
I常用IDEA快捷键
摘要:Ctrl + R 在当前文件进行批量文本替换 Ctrl + Z 撤销 Ctrl + Y 删除光标所在行 或 删除选中的行 Ctrl + X 剪切光标所在行 或 剪切选择内容 Ctrl + C 复制光标所在行 或 复制选择内容 Alt + Enter可以自动修复错误,如包的引入,补齐 override
阅读全文
原生JDBC流程
摘要:public class TestJDBC { public static void main(String[] args) throws ClassNotFoundException, SQLException { Connection connection = null; PreparedSta
阅读全文
AJAX发送请求
摘要:AJAX发送请求 var xhr = null; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest();//常用的浏览器 }else{ xhr= new ActiveXobject("Microsoft.XMLHttp");//IE6 } xhr
阅读全文