*/
public static void kgParseUrl(String searchName) {
String url = “https://songsearch.kugou.com/song_search_v2?keyword=”+searchName+“&platform=WebFilter”;
String jsonStr=HttpUtil.createGet(url).execute().body();
List cookies =HttpUtil.createGet(url).execute().getCookies();
JSONObject json =JSONObject.parseObject(jsonStr);
String fileHash= json.getJSONObject(“data”).getJSONArray(“lists”).getJSONObject(0).getString(“FileHash”);
String audioName= json.getJSONObject(“data”).getJSONArray(“lists”).getJSONObject(0).getString(“FileName”);
String songUrl = “https://wwwapi.kugou.com/yy/index.php?r=play/getdata&hash=”+fileHash+“&mid=1”;
String jsonStr1= HttpUtil.createGet(songUrl).execute().body();
JSONObject json1 =JSONObject.parseObject(jsonStr1);
String playUrl= json1.getJSONObject(“data”).getString(“play_url”);
log.info(“\n-----音频下载地址-----\n”+playUrl);
downLoad(playUrl,audioName,“酷狗”);
}
/
- 方法描述: 视频文件下载
- @param httpUrl
- @param title
- @param source
- @author tarzan Liu
- @date 2020年08月06日 18:45:44
*/
public static void downLoad(String httpUrl,String title,String source) {
String fileAddress = videoSavePath+“/”+source+“/”+title+“.mp4”;
int byteRead;
try {
URL url = new URL(httpUrl);
//获取链接
URLConnection conn = url.openConnection();
//输入流
InputStream inStream = conn.getInputStream();
//封装一个保存文件的路径对象
File fileSavePath = new File(fileAddress);
//注:如果保存文件夹不存在,那么则创建该文件夹
File fileParent = fileSavePath.getParentFile();
if(!fileParent.exists()){
fileParent.mkdirs();
}
//写入文件
FileOutputStream fs = new FileOutputStream(fileSavePath);
byte[] buffer = new byte[1024];
while ((byteRead = inStream.read(buffer)) != -1) {
fs.write(buffer, 0, byteRead);
}
inStream.close();
fs.close();
log.info(“\n-----音频保存路径-----\n”+fileSavePath.getAbsolutePath());
} catch (FileNotFoundException e) {
小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Java工程师,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新Java开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Java)
里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Java)
[外链图片转存中…(img-xUIvbwCx-19)]
版权声明:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权、违法违规、事实不符,请将相关资料发送至xkadmin@xkablog.com进行投诉反馈,一经查实,立即处理!
转载请注明出处,原文链接:https://www.xkablog.com/javal-zj/10580.html