博主端掉了一个接口--随手记
一个应用引发的惨案
应该是在某群里面讨论有什么工具可以提高生产效率,有人桌面非常清洁,使用了快捷方式工具–quicker。抱着试试的态度,试用了一下,觉得还行,可以有效快速的提高打开程序的效率,以前都是把图标放在一个icon的桌面文件夹里面,每次都要点一下然后找到想要的图标,有了这个程序,可以把常用的启动放在里面。
但这个软件不仅仅可以快速启动程序,动作库可以自定义。
动作库:https://getquicker.net/Share
这个就比较有意思了,其中有个扩展 I like
之后使用过程中就很好奇照片都是那里过来的。所以查看了它的编辑内容:
发现是请求了一个url:https://api.apiopen.top/getImages
之后就顺藤摸瓜找到了api地址。
想着每天点击一下才能保存一个,就萌生了写个程序一键下载。
代码如下:
主程序:
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import javax.net.ssl.HttpsURLConnection;
import java.io.*;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;
public class heloword {
public static void main(String[] args) {
//发送 GET 请求
Map ke = new HashMap<String, String>();
int chongfu = 0;
int pa = 1;
String s = null;
File saveFiletxt = new File("E:\\work\\1.txt");
while (true) {
s = HttpRequest.sendGet("https://api.apiopen.top/getImages", "count=5&page=" + pa + "");
JSONObject js = JSONObject.parseObject(s);
if (200 == (int) js.get("code")) {
JSONArray jrre = js.getJSONArray("result");
for (int i = 0; i < jrre.size(); i++) {
JSONObject x = (JSONObject) jrre.get(i);
String im = x.get("img").toString();
System.out.println(im);
if (!ke.containsValue(im) && !ReadTxt.readTxt(saveFiletxt, im)) {
String saveFile = "E:\\work\\tmp\\" + System.currentTimeMillis() + im.substring(im.lastIndexOf("/") + 1);
Boolean b = getImg(im, saveFile);
if (b) {
ke.put(im.substring(im.lastIndexOf("/") + 1), im);
ReadTxt.writeTxt(saveFiletxt, im);
} else {
continue;
}
} else {
System.out.println(chongfu++);
continue;
}
try {
Thread.sleep(5000);
} catch (InterruptedException ie) {
}
}
}
try {
Thread.sleep(5000);
} catch (InterruptedException ie) {
}
pa++;
}
}
private static Boolean getImg(String u, String saveFile) {
URL url;
try {
url = new URL(null, u, new sun.net.www.protocol.https.Handler());
HttpsURLConnection conn = null;
try {
conn = (HttpsURLConnection) url.openConnection();
} catch (IOException e) {
e.printStackTrace();
}
conn.setRequestMethod("GET");
conn.setConnectTimeout(5 * 1000);
InputStream in = conn.getInputStream();
byte[] data = readInputStream(in);
File f = new File(saveFile);
FileOutputStream out = new FileOutputStream(f);
out.write(data);
out.close();
} catch (IOException e) {
return false;
}
return true;
}
private static byte[] readInputStream(InputStream ins) throws IOException {
// TODO 自动生成的方法存根
ByteArrayOutputStream out = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = 0;
while ((len = ins.read(buffer)) != -1) {
out.write(buffer, 0, len);
}
ins.close();
return out.toByteArray();
}
}
http请求:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
import java.util.Map;
public class HttpRequest {
/**
* 向指定URL发送GET方法的请求
*
* @param url
* 发送请求的URL
* @param param
* 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
* @return URL 所代表远程资源的响应结果
*/
public static String sendGet(String url, String param) {
String result = "";
BufferedReader in = null;
try {
String urlNameString = url + "?" + param;
URL realUrl = new URL(urlNameString);
// 打开和URL之间的连接
URLConnection connection = realUrl.openConnection();
// 设置通用的请求属性
connection.setRequestProperty("accept", "*/*");
connection.setRequestProperty("connection", "Keep-Alive");
connection.setRequestProperty("user-agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 建立实际的连接
connection.connect();
// 获取所有响应头字段
Map<String, List<String>> map = connection.getHeaderFields();
// 遍历所有的响应头字段
for (String key : map.keySet()) {
System.out.println(key + "--->" + map.get(key));
}
// 定义 BufferedReader输入流来读取URL的响应
in = new BufferedReader(new InputStreamReader(
connection.getInputStream()));
String line;
while ((line = in.readLine()) != null) {
result += line;
}
} catch (Exception e) {
System.out.println("发送GET请求出现异常!" + e);
e.printStackTrace();
}
// 使用finally块来关闭输入流
finally {
try {
if (in != null) {
in.close();
}
} catch (Exception e2) {
e2.printStackTrace();
}
}
return result;
}
/**
* 向指定 URL 发送POST方法的请求
*
* @param url
* 发送请求的 URL
* @param param
* 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
* @return 所代表远程资源的响应结果
*/
public static String sendPost(String url, String param) {
PrintWriter out = null;
BufferedReader in = null;
String result = "";
try {
URL realUrl = new URL(url);
// 打开和URL之间的连接
URLConnection conn = realUrl.openConnection();
// 设置通用的请求属性
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
// 获取URLConnection对象对应的输出流
out = new PrintWriter(conn.getOutputStream());
// 发送请求参数
out.print(param);
// flush输出流的缓冲
out.flush();
// 定义BufferedReader输入流来读取URL的响应
in = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String line;
while ((line = in.readLine()) != null) {
result += line;
}
} catch (Exception e) {
System.out.println("发送 POST 请求出现异常!"+e);
e.printStackTrace();
}
//使用finally块来关闭输出流、输入流
finally{
try{
if(out!=null){
out.close();
}
if(in!=null){
in.close();
}
}
catch(IOException ex){
ex.printStackTrace();
}
}
return result;
}
}
文件读取写入:
import java.io.*;
public class ReadTxt {
/**传入txt路径读取txt文件
* @param txtPath
* @return 返回读取到的内容
*/
public static Boolean readTxt(File txtPath,String textnew) {
if(txtPath.isFile() && txtPath.exists()){
try {
FileInputStream fileInputStream = new FileInputStream(txtPath);
InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream);
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
StringBuffer sb = new StringBuffer();
String text = null;
while((text = bufferedReader.readLine()) != null){
if(text.equals(textnew)){
return true;
}
}
return false;
} catch (Exception e) {
e.printStackTrace();
}
}
return null;
}
/**使用FileOutputStream来写入txt文件
* @param txtPath txt文件路径
* @param content 需要写入的文本
*/
public static void writeTxt(File txtPath,String content){
FileOutputStream fileOutputStream = null;
try {
if(txtPath.exists()){
//判断文件是否存在,如果不存在就新建一个txt
txtPath.createNewFile();
}
fileOutputStream = new FileOutputStream(txtPath,true);
fileOutputStream.write((content+"\r\n").getBytes());
fileOutputStream.flush();
fileOutputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
实现:保存到E盘文件夹下,循环,得到图片后保存到E盘,之后写入到1.txt中,如果请求到了相同数据,直接跳过。每次启用都会读取txt文件的url.
结果:
循环到500个左右就没有了,有些照片地址打不开。总计没多少张照片。
我都下载下来了,可在我的网盘中查看(已删除网盘)
算是这个api直接请求完了。也不知道是谁的藏品。总之感谢分享,有意思一次操作。
end;
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 零的博客!