在Python里dict正好是和JSON相对应的,所以处理JSON基本上是dict和JSON String的互转 使用json.loads() import json ## 解析JSON String到dict student_json = '{"name": "Terry", "age": 18, "languages": ["English", "中文"]}' student_dict = json.loads(student_json) # 接下来就是dict的操作了 # Output: {'name': '…

2021-05-23 0条评论 1008点热度 0人点赞 admin 阅读全文

iView中用到一个this.$Modal.confirm对话框,确认后再执行确定动作后,弹出this.$Modal.info对话框告诉用户执行结果,结果是第二个info对话框闪了以下就消失了; debug发现,如果confirm后,执行的动作花的时间长一点的话,第二个info对话框就能显示了!估计是这里的Modal采用的隐藏开关用的同一个变量,第一个消失的时候,导致第二个也跟着消失了。 既然执行的动作花的时间长一点就能解决,也就是说只要给第一个对话框足够的时间让它消失,再执行下一步的动作就可以了,我们可以在第一个…

2021-05-21 0条评论 1401点热度 0人点赞 admin 阅读全文

如题,SQL下,想要知道两个时间相隔多少(持续时间) 假设表table1的两个字段date1和date2都是datetime类型,使用TO_NUMBER(date1-date2)可以得到时间的天数(小数),想要得到其他的时间单位,只要在天数上做换算就可以了,如下: -- 得到当前日期的毫秒数(和1970年相比) --使用round后得到整数 SELECT ROUND(TO_NUMBER(SYSDATE-to_date('1970-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) *…

2021-05-19 0条评论 1064点热度 0人点赞 admin 阅读全文

今天项目中需要用到一个JSON的依赖包(json-lib) 虽然根据https://mvnrepository.com/artifact/net.sf.json-lib/json-lib/2.4查到pom应该这样导入: <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib --> <dependency> <groupId>net.sf.json-lib</groupId> <artif…

2021-05-17 0条评论 2133点热度 0人点赞 admin 阅读全文

strptime可以根据特定的格式化的时间格式,将文本解析成datetime类型。 datetime格式化的日期时间格式,可以参考:https://blog.terrynow.com/2021/05/13/python-strftime-format-datetime-force-with-locale-string/ from datetime import datetime date_string1 = "2021-05-15" date_string2 = "2021-05-15 18:08" print("…

2021-05-15 0条评论 1092点热度 0人点赞 admin 阅读全文

strftime是Python里将日期、时间格式化的一个工具方法 下面的代码片段将datetime转换成格式化后的string from datetime import datetime now = datetime.now() # 当前日期 year = now.strftime("%Y") print("年份:", year) month = now.strftime("%m") print("月份:", month) day = now.strftime("%d") print("天:", day) prin…

2021-05-13 0条评论 2726点热度 0人点赞 admin 阅读全文

最近一个项目中Java中用OKHttp/HttpsURLConnection请求一个https的API,出现如下报错: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target 用Postman或者浏览器模拟请求,却是正常的,也不是网上查到的所谓的证书问题。 因为实在检查不出来什么原…

2021-05-12 0条评论 3167点热度 0人点赞 admin 阅读全文

Python实际开发中用到的读写ini格式的配置文件, Python中的配置文件(ini/conf)格式要求还是比较严格的,如下: config.cfg: # [Main] 必须包含section # Section下面才能写key=value [Main] key1 = value1 key2 = value2 [Another Section] key3 = value3 下面记录下常用读写conf配置文件的代码 import configparser config = configparser.RawConf…

2021-05-11 0条评论 1398点热度 0人点赞 admin 阅读全文

Python中String没有类似Java里的contains,不过可以使用string.find返回找到的下标来判断是否包含字符串: source_string = 'abc' contains_string = 'a' founded_index = source_string.find(contains_string) # 找到返回>=0 找不到返回-1 print(founded_index >= 0) # 根据找到的index判断是否包含字符串 不过有个问题,如果我们要不要判断大小写呢(大小写…

2021-05-09 0条评论 3670点热度 0人点赞 admin 阅读全文

有时候,我们需要用Java开发一个小的程序,或者只需要实现简单的http监听的server,此时并不想引入太多依赖(比如Spring或者要使用Tomcat等),此时可以使用Java自带的HttpServer来实现简单的web服务器,实现一些基本功能还是没有问题的。 下面分享下代码片段实现HttpServer,代码实现了以下几个功能和要点(详见代码注释): 实现web server(GET方法): http://127.0.0.1:8182/hello 如果GET携带参数 http://127.0.0.1:8182/…

2021-05-07 0条评论 1591点热度 0人点赞 admin 阅读全文
1444546474856