新增涩图
This commit is contained in:
parent
eedd304c43
commit
5b928afa82
@ -1,5 +1,6 @@
|
|||||||
package com.yutou.qqbot.models.setu;
|
package com.yutou.qqbot.models.setu;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.yutou.qqbot.QQBotManager;
|
import com.yutou.qqbot.QQBotManager;
|
||||||
import com.yutou.qqbot.interfaces.DownloadInterface;
|
import com.yutou.qqbot.interfaces.DownloadInterface;
|
||||||
import com.yutou.qqbot.models.Model;
|
import com.yutou.qqbot.models.Model;
|
||||||
@ -24,7 +25,10 @@ public class GetSeTu extends Model {
|
|||||||
public void onMessage(Long qq, MessageEvent event, boolean isGroup) {
|
public void onMessage(Long qq, MessageEvent event, boolean isGroup) {
|
||||||
super.onMessage(qq, event, isGroup);
|
super.onMessage(qq, event, isGroup);
|
||||||
if ("来点色图".equals(msg)||"来点涩图".equals(msg)){
|
if ("来点色图".equals(msg)||"来点涩图".equals(msg)){
|
||||||
HttpTools.download(" https://api.ixiaowai.cn/api/api.php",
|
String ret=HttpTools.get("https://api.ixiaowai.cn/api/api.php?return=json");
|
||||||
|
System.out.println("ret = " + ret);
|
||||||
|
JSONObject json=JSONObject.parseObject(ret);
|
||||||
|
HttpTools.download(json.getString("acgurl"),
|
||||||
null, new DownloadInterface() {
|
null, new DownloadInterface() {
|
||||||
@Override
|
@Override
|
||||||
public void onDownload(File file) {
|
public void onDownload(File file) {
|
||||||
@ -35,4 +39,19 @@ public class GetSeTu extends Model {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
HttpTools.download("https://api.ixiaowai.cn/api/api.php", null, new DownloadInterface() {
|
||||||
|
@Override
|
||||||
|
public void onDownload(File file) {
|
||||||
|
super.onDownload(file);
|
||||||
|
System.out.println(file.getAbsoluteFile());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onError(Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.yutou.qqbot.utlis;
|
|||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.yutou.qqbot.interfaces.DownloadInterface;
|
import com.yutou.qqbot.interfaces.DownloadInterface;
|
||||||
|
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.net.*;
|
import java.net.*;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@ -156,11 +157,16 @@ public class HttpTools {
|
|||||||
savePath.mkdirs();
|
savePath.mkdirs();
|
||||||
}
|
}
|
||||||
Log.i("DOWNLOAD", "下载文件:" + url + " 保存文件:" + saveName);
|
Log.i("DOWNLOAD", "下载文件:" + url + " 保存文件:" + saveName);
|
||||||
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
|
URLConnection connection;
|
||||||
|
if(url.startsWith("https:")) {
|
||||||
|
connection = (HttpsURLConnection) new URL(url).openConnection();
|
||||||
|
}else{
|
||||||
|
connection=(HttpURLConnection)new URL(url).openConnection();
|
||||||
|
}
|
||||||
|
|
||||||
connection.addRequestProperty("User-Agent", getExtUa());
|
connection.addRequestProperty("User-Agent", getExtUa());
|
||||||
// Log.i(TAG,"获取到网络请求:"+connection.getResponseCode());
|
// Log.i(TAG,"获取到网络请求:"+connection.getResponseCode());
|
||||||
|
|
||||||
|
|
||||||
InputStream inputStream = connection.getInputStream();
|
InputStream inputStream = connection.getInputStream();
|
||||||
jar = new File(donwloadPath + saveName + "_tmp.tmp");
|
jar = new File(donwloadPath + saveName + "_tmp.tmp");
|
||||||
jar.createNewFile();
|
jar.createNewFile();
|
||||||
|
Loading…
Reference in New Issue
Block a user