会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
xiaofei01gm
博客园
首页
新随笔
联系
订阅
管理
2022年9月4日
chrome 安装扩展插件
摘要: 地址栏访问 chrome://flags/#extensions-on-chrome-urls , Extensions on chrome:// URLs 设置为 Enable; 更多工具,扩展程序,打开开发者模式; 拖拽安装扩展插件即可
阅读全文
posted @ 2022-09-04 16:32 xiaofei01gm
阅读(157)
评论(0)
推荐(0)
编辑
2022年8月22日
logback.xml 配置输出到文件
摘要: <property name="log_dir" value="E:\\Project\\The_Log\\Logack_Demo\\output\\"/> <!-- 文件输出 --> <appender name="file" class="ch.qos.logback.core.FileAppe
阅读全文
posted @ 2022-08-22 16:47 xiaofei01gm
阅读(109)
评论(0)
推荐(0)
编辑
ELK 和 Filebeat
摘要: ELK 是elastic公司提供的一套完整的日志收集、展示解决方案,是三个产品的首字母缩写,分别是ElasticSearch、Logstash 和 Kibana: ElasticSearch简称ES,由Java 语言编写,它是一个建立在全文搜索引擎Apache Lucene基础上的、实时的、分布式的
阅读全文
posted @ 2022-08-22 16:38 xiaofei01gm
阅读(69)
评论(0)
推荐(0)
编辑
2022年8月21日
Java中try()用法
摘要: JDK1.7优化后的try-with-resource语句,写在()里面的流对象对应的类都实现了自动关闭接口AutoCloseable try (创建流对象语句,如果多个,使用';'隔开) { // 读写数据 } catch (IOException e) { e.printStackTrace()
阅读全文
posted @ 2022-08-21 14:33 xiaofei01gm
阅读(2063)
评论(0)
推荐(0)
编辑
2022年8月13日
过滤器模式
摘要:
阅读全文
posted @ 2022-08-13 21:44 xiaofei01gm
阅读(10)
评论(0)
推荐(0)
编辑
2021年3月5日
java 取N位数,前面补0
摘要: // "%04d" 取4位数 String.format("%04d", 19)
阅读全文
posted @ 2021-03-05 23:33 xiaofei01gm
阅读(181)
评论(0)
推荐(0)
编辑
java格式化时间到毫秒
摘要: java格式化时间到毫秒:SimpleDateFormat formatter = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss:SSS");String formatStr =formatter.format(new Date(); 参数说明: Symbol
阅读全文
posted @ 2021-03-05 09:53 xiaofei01gm
阅读(1797)
评论(0)
推荐(0)
编辑
2021年3月4日
ScheduledExecutorService
摘要: // 延时3秒执行任务 ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(5);scheduledThreadPool.schedule(new Runnable() { public vo
阅读全文
posted @ 2021-03-04 09:55 xiaofei01gm
阅读(225)
评论(0)
推荐(0)
编辑
2021年3月3日
Java 获取星期几
摘要: Date date = new Date();SimpleDateFormat dateFm = new SimpleDateFormat("EEEE");String currSun = dateFm.format(date); // "星期二".equals(currSun) || "Tuesd
阅读全文
posted @ 2021-03-03 10:23 xiaofei01gm
阅读(193)
评论(0)
推荐(0)
编辑
Java 获取当前小时
摘要: Calendar calendar = Calendar.getInstance(); int hour = calendar.get(Calendar.HOUR_OF_DAY); // 24小时制 Calendar calendar = Calendar.getInstance();int hou
阅读全文
posted @ 2021-03-03 10:21 xiaofei01gm
阅读(7957)
评论(0)
推荐(0)
编辑
下一页