05 2020 档案
Eclipse - 不能自动联想类成员的解决方法之一
摘要:打开菜单Windows->Preferences里的Java->Editor->Content Assist->Advanced,把Java Proposals勾选中。 阅读全文
posted @ 2020-05-30 21:51 sunylat 阅读(392) 评论(0) 推荐(0)
Tomcat - web.xml的xml错误解决方法!!
摘要:错误信息: cvc-complex-type.2.4.a: Invalid content was found starting with element 'display-name'. One of '{"http://xmlns.jcp.org/xml/ns/javaee":servlet-cl 阅读全文
posted @ 2020-05-24 11:22 sunylat 阅读(1510) 评论(0) 推荐(0)
Delphi - ISuperObject如何将保持的JSON格式化?
摘要:{ 把JSON赋值给list 注意:jo.AsJSon(true, false)里面的两个参数,第一个为true,才会输出格式化好的JSON } ConfigList.Text := jo.AsJSon(true, false); 参考: https://stackoverflow.com/ques 阅读全文
posted @ 2020-05-18 21:29 sunylat 阅读(613) 评论(0) 推荐(0)
Delphi - TStringList保存的文件如何避免保持为UTF-8 BOM格式?
摘要://要执行保持的TStringList ConfigList //要保存到的文件名 ConfigFile //这句话是关键,确保保存后的文件是UTF-8,不是UTF-8 BOM格式 ConfigList.WriteBOM := false; ConfigList.SaveToFile( Config 阅读全文
posted @ 2020-05-18 21:28 sunylat 阅读(1200) 评论(0) 推荐(0)