会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
首页
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
33
下一页
2021年12月7日
Newtonsoft.Json 中的 Json 和 Xml互转
摘要: 1、Json转换为XML XmlDocument docj = JsonConvert.DeserializeXmlNode(strJson); string resultText = docj.OuterXml; 2、Xml转换为Json XmlDocument doc = new XmlDocu
阅读全文
posted @ 2021-12-07 17:00 超级驼鹿
阅读(383)
评论(0)
推荐(0)
2021年12月1日
查询oracle数据库语句
摘要: 1.根据一个字段返回符合条件的数据 select * from pub_dept a where instr(a.deptname,'技')>0 2.同时两个字段符合则返回该条数据 select * from pub_dept a where (a.deptcode,a.deptname)=(sel
阅读全文
posted @ 2021-12-01 09:29 超级驼鹿
阅读(101)
评论(0)
推荐(0)
2021年11月9日
接收HttpPost请求路由可以去掉参数不用带
摘要: 一:请求路由包含有请求参数名param 1.接收HttpPost请求 [HttpPost] public string Test(string param) { return param; } 2.那么在postman中请求路由将会是这样,带上参数param,地址长度也改变 二:修改接口,去掉请求参
阅读全文
posted @ 2021-11-09 17:21 超级驼鹿
阅读(627)
评论(0)
推荐(0)
2021年10月9日
吟唱一首
摘要: 花儿为什么这样红 为什么这样红~ PS:计算年龄的 DateTime.Now.Year - Convert.ToDateTime("20211009").Year;
阅读全文
posted @ 2021-10-09 08:39 超级驼鹿
阅读(25)
评论(0)
推荐(0)
2021年9月7日
C# XML反序列化解析成对象集合
摘要: 1.需要解析的XML字符串,获取 BookedInfo 集合 string xmlStr = @"<Request> <BookedInfos> <BookedInfo> <CHARGECODE> 收费项编码 </CHARGECODE> <HISDEPTCODE> His科室代码 </HISDEPT
阅读全文
posted @ 2021-09-07 14:20 超级驼鹿
阅读(558)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
33
下一页
/*