Connection con = Jsoup.connect(url);con.header("User-Agent", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1");Connection.Response resp = con.method(Connection.Method.GET).execute();String strUrl = resp.url().toString();String videoId = strUrl.substring(strUrl.indexOf("video/"), strUrl.lastIndexOf("/")).replace("video/", "");String b ="https://m.douyin.com/share/video/"+videoId;String finalVideoAddress = getVideoStreamUrl2(b);
#sql查询字段名,注释操作拼接
#查询字段名和注释 select COLUMN_NAME,COLUMN_COMMENT from information_schema.COLUMNS where table_name 表名 and table_schema 库名 order by ordinal_position #查询整个内容 select * from information_schema.COLUMNS wh…