11 2021 档案

摘要:1. 引言 什么是Json Schema? 以一个例子来说明 假设有一个web api,接受一个json请求,返回某个用户在某个城市关系最近的若干个好友。一个请求的例子如下: { "city" : "chicago", "number": 20, "user" : { "name":"Alex", 阅读全文
posted @ 2021-11-17 17:19 小裴和他的接口们 阅读(167) 评论(0) 推荐(0)
摘要:截取_之前字符串 public static void substringTest01() { String str = "test_https://www.baidu.com/"; String str1 = str.substring(0, str.indexOf("_")); System.o 阅读全文
posted @ 2021-11-11 11:20 小裴和他的接口们 阅读(214) 评论(0) 推荐(0)