会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
fxg
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2024年9月12日
map的循环
摘要: Map<String, String> map = new HashMap<>();map.put("A", "65");map.put("B", "66");for (String key : map.keySet()) { String value = map.get(key); System.
阅读全文
posted @ 2024-09-12 11:00 fxg
阅读(20)
评论(0)
推荐(0)
2024年9月10日
IDEA插件JRebel的使用总结
摘要: jrebel使用: https://blog.csdn.net/qq_41071754/article/details/110179996
阅读全文
posted @ 2024-09-10 14:14 fxg
阅读(25)
评论(0)
推荐(0)
idea插件Jrebel 最新的 2024.3.0 激活方法
摘要: 转地址: https://blog.csdn.net/qq251708339/article/details/134105044 ip地址:http://42.193.18.168/guid guid生成地址https://www.iamwawa.cn/guid.html&wd=&eqid=acde
阅读全文
posted @ 2024-09-10 14:06 fxg
阅读(4301)
评论(0)
推荐(0)
2024年7月3日
java 正则去时间符号
摘要: String date = "2017-09-19 14:40:01"; String date = "2017/09-19 14:40:01";String response = date.replaceAll("[[\\s-:punct:]]","").replaceAll("[[\\s/:pu
阅读全文
posted @ 2024-07-03 10:25 fxg
阅读(9)
评论(0)
推荐(0)
2024年6月26日
java json
摘要: map 转json Map<String, Object> map = new HashMap<>(); map.put("key1", "value1"); map.put("key2", 123); map.put("key3", new Object()); System.out.printl
阅读全文
posted @ 2024-06-26 10:49 fxg
阅读(17)
评论(0)
推荐(0)
2024年6月15日
c# https请求
摘要: private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors) { return true; //总是接受 }
阅读全文
posted @ 2024-06-15 16:01 fxg
阅读(146)
评论(0)
推荐(0)
2024年6月10日
Intellij IDEA使用@Autowired注解,出现could not autowire错误,解决方案
摘要: Intellij IDEA使用@Autowired注解,出现could not autowire错误,解决方案 地址: https://blog.csdn.net/rambler_designer/article/details/89040125
阅读全文
posted @ 2024-06-10 13:59 fxg
阅读(52)
评论(0)
推荐(0)
2024年6月7日
js 年月日时分秒
摘要: function getCurrDate(time){ const date = new Date(time); const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, '0');
阅读全文
posted @ 2024-06-07 15:51 fxg
阅读(42)
评论(0)
推荐(0)
js json解析
摘要: //示例1 const jsonString = '{"name":"John", "age":30, "city":"New York"}'; const jsonObject = JSON.parse(jsonString); console.log(jsonObject["name"]); /
阅读全文
posted @ 2024-06-07 11:54 fxg
阅读(194)
评论(0)
推荐(0)
2023年9月1日
json 3
摘要: 基于前面写的内容,我们可以快速读取一个数组的JSON串了,直接上代码: procedure TForm6.Button2Click(Sender: TObject); begin var jsonstr:= '{' + ' "code": 0,' + ' "msg": "Success",' + '
阅读全文
posted @ 2023-09-01 10:14 fxg
阅读(19)
评论(0)
推荐(0)
1
2
下一页
公告