摘要:
public static string GetJsonValue(string jsonStr, string key) { string result = string.Empty; if (!string.IsNullOrEmpty(jsonStr)) { key = "\"" + key.T 阅读全文
摘要:
https://jingyan.baidu.com/article/0bc808fc24368d1bd485b9f6.html 阅读全文
摘要:
Oracle 一个中文汉字 占用几个字节,要根据Oracle中字符集编码决定查看oracle server端字符集 select userenv('language') from dual;如果显示如下,一个汉字占用两个字节SIMPLIFIED CHINESE_CHINA.ZHS16GBK 如果显示 阅读全文
摘要:
netstat -anotasklist | findstr "59624"taskkill /f /t /im Struzzo.exe 阅读全文
摘要:
我们在web.xml中配置servlet的时候会有个属性<load-on-startup></load-on-startup>,这里主要记一下它的作用,源码在后续记得好好看一下。 The load-on-startup element indicates that this servlet shou 阅读全文
摘要:
参考:https://www.cnblogs.com/xuexin/p/6410979.html oracle下新建表空间和删除表空间 一》创建表空间和用户 1.创建临时表空间 create temporary tablespace my_temp(临时表空间名) tempfile '/home/o 阅读全文