破解网站码验证,Java实现,不调用任何平台api接口
package image.images; import java.io.File;
import java.io.IOException;
import java.io.InputStream; import org.apache.commons.io.FileUtils;
import org.apache.http.HttpEntity;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
/**
* 负责爬去验证码图片
* @author FMm
*
*/
public class HttpClientImage { public static void main(String[] args) throws ClientProtocolException, IOException, InterruptedException {
// 创建httpClient实例
CloseableHttpClient httpClient = HttpClients.createDefault();
// url
String url = "http://con.monyun.cn:9960/aut_checkCode.hts?iden=1422083454409442236&t=0.06292891333169814";
// 循环爬去20张验证码
for (int i = 0; i < 20; i++) {
// 休眠一下否则图片加载不出来,
Thread.sleep(2000);
// 创建请求
HttpGet httpGet = new HttpGet(url);
// 执行请求
CloseableHttpResponse response = httpClient.execute(httpGet);
// 获取实体对象
HttpEntity httpEntity = response.getEntity();
if (httpEntity != null) {
// 打印返回类型保证是图片类型
System.out.println("Content-Type:" + httpEntity.getContentType().getValue());
// 获取InputStream流
InputStream inputStream = httpEntity.getContent();
// 文件复制,common io 包下,需要 引入依赖
FileUtils.copyToFile(inputStream, new File("/Users/mac/Desktop/image/" + i + ".png"));
}
}
httpClient.close();
}
}
package image.images; import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileFilter;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List; import javax.imageio.ImageIO;
import javax.imageio.ImageWriter;
import javax.imageio.stream.ImageOutputStream;
import javax.net.ssl.HttpsURLConnection;
/**
* 图片背景处理,提高识别度
* @author FMm
*
*/
public class ImageConverter { private static List<File> fileList = new ArrayList<File>(); public static void main(String[] args) { // 图片所在的根目录 , 图片去除水印后的存储目录
// 支持批量去除图片水印,第一个参数为图片存在目录,第二为新建图片目录
convertAllImages("/Users/mac/Desktop/image/", "/Users/mac/Desktop/images/");
} private static void convertAllImages(String dir, String saveDir) {
File dirFile = new File(dir);
File saveDirFile = new File(saveDir);
dir = dirFile.getAbsolutePath();
saveDir = saveDirFile.getAbsolutePath();
loadImages(new File(dir));
for (File file : fileList) {
String filePath = file.getAbsolutePath(); String dstPath = saveDir + filePath.substring(filePath.indexOf(dir) + dir.length(), filePath.length());
System.out.println("converting: " + filePath);
replaceColor(file.getAbsolutePath(), dstPath);
}
} public static void loadImages(File f) {
if (f != null) {
if (f.isDirectory()) {
File[] fileArray = f.listFiles();
if (fileArray != null) {
for (int i = 0; i < fileArray.length; i++) {
loadImages(fileArray[i]);
}
}
} else {
String name = f.getName();
if (name.endsWith("png") || name.endsWith("jpg")) {
fileList.add(f);
}
}
}
} @SuppressWarnings("unused")
private static void replaceFolderImages(String dir) {
File dirFile = new File(dir);
File[] files = dirFile.listFiles(new FileFilter() {
public boolean accept(File file) {
String name = file.getName();
if (name.endsWith("png") || name.endsWith("jpg")) {
return true;
}
return false;
}
});
for (File img : files) {
replaceColor(img.getAbsolutePath(), img.getAbsolutePath());
}
} private static void replaceColor(String srcFile, String dstFile) {
try {
Color color = new Color(255, 195, 195);
replaceImageColor(srcFile, dstFile, color, Color.WHITE);
} catch (IOException e) {
e.printStackTrace();
}
} public static void replaceImageColor(String file, String dstFile, Color srcColor, Color targetColor)
throws IOException {
URL http;
if (file.trim().startsWith("https")) {
http = new URL(file);
HttpsURLConnection conn = (HttpsURLConnection) http.openConnection();
conn.setRequestMethod("GET");
} else if (file.trim().startsWith("http")) {
http = new URL(file);
HttpURLConnection conn = (HttpURLConnection) http.openConnection();
conn.setRequestMethod("GET");
} else {
http = new File(file).toURI().toURL();
}
BufferedImage bi = ImageIO.read(http.openStream());
if (bi == null) {
return;
} Color wColor = new Color(255, 255, 255);// 白色 for (int i = 0; i < bi.getWidth(); i++) {
for (int j = 0; j < bi.getHeight(); j++) {
System.out.println(i + "---" + j);
int color = bi.getRGB(i, j);
Color oriColor = new Color(color);
int red = oriColor.getRed();
int greed = oriColor.getGreen();
int blue = oriColor.getBlue();
// 以下if处是则改变图片颜色 将图片背景改变成纯白色,提高识别度
if (i < 4 | i > 100) {
bi.setRGB(i, j, wColor.getRGB());
//bi.setRGB()方法是把对应的xy坐标的颜色改变成纯白色Color wColor = new Color(255, 255, 255);// 白色
} if (j < 4 | j > 35) {
bi.setRGB(i, j, wColor.getRGB());
} if (red < 107 && greed < 107 && blue < 107) {
bi.setRGB(i, j, wColor.getRGB()); }
if ((red <= 255 && red > 200) & (greed <= 255 && greed >= 200) & blue <= 255 && blue >= 200) {
bi.setRGB(i, j, wColor.getRGB());
}
}
}
String type = file.substring(file.lastIndexOf(".") + 1, file.length());
Iterator<ImageWriter> it = ImageIO.getImageWritersByFormatName(type);
ImageWriter writer = it.next();
File f = new File(dstFile);
f.getParentFile().mkdirs();
ImageOutputStream ios = ImageIO.createImageOutputStream(f);
writer.setOutput(ios);
writer.write(bi);
bi.flush();
ios.flush();
ios.close();
}
}
package image.images; import java.io.File;
import java.util.regex.Matcher;
import java.util.regex.Pattern; import net.sourceforge.tess4j.ITesseract;
import net.sourceforge.tess4j.Tesseract;
import net.sourceforge.tess4j.TesseractException;
/**
* 读取验证码并返回结构
* @author FMm
*
*/
public class ReadImage { public static void main(String[] args) throws TesseractException {
ITesseract instance = new Tesseract();
//如果未将tessdata放在根目录下需要指定绝对路径,tessdata包下是tess4j训练语言包
instance.setDatapath("/Users/mac/Desktop/tessdata");
//如果需要识别英文之外的语种,需要指定识别语种,并且需要将对应的语言包放进项目中
instance.setLanguage("eng");
// 指定识别图片路径
File imgDir = new File("/Users/mac/Desktop/images/8.png");
long startTime = System.currentTimeMillis();
String ocrResult = instance.doOCR(imgDir);
System.out.println(ocrResult);
if(isStartWithNumber(ocrResult)) {
String start = ocrResult.substring(0,1);
String meg = ocrResult.substring(1,2);
String end = ocrResult.substring(2,3);
// 输出识别结果
System.out.println("OCR Result: \n" + ocrResult + "\n 耗时:" + (System.currentTimeMillis() - startTime) + "ms");
// 得出结果
System.out.println(start+meg+end+"="+(Integer.parseInt(start)+Integer.parseInt(end)));
} else {
System.out.println("仅支持数字");
return;
} } public static boolean isStartWithNumber(String str) {
Pattern pattern = Pattern.compile("[0-9]*");
Matcher isNum = pattern.matcher(str.charAt(0)+"");
if (!isNum.matches()) {
return false;
}
return true;
}
}
maven文件
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <groupId>image</groupId>
<artifactId>images</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging> <name>images</name>
<url>http://maven.apache.org</url> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> <dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.8</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.12.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.47</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.tess4j</groupId>
<artifactId>tess4j</artifactId>
<version>4.4.1</version>
</dependency>
</dependencies>
</project>
不是maven项目所需jar
p.p1 { margin: 0; font: 12px Menlo; color: rgba(66, 66, 66, 1) }
org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.jar
org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar
commons-logging/commons-logging/1.2/commons-logging-1.2.jar
commons-codec/commons-codec/1.11/commons-codec-1.11.jar
org/jsoup/jsoup/1.12.1/jsoup-1.12.1.jar
commons-io/commons-io/2.5/commons-io-2.5.jar
com/alibaba/fastjson/1.2.47/fastjson-1.2.47.jar
junit/junit/3.8.1/junit-3.8.1.jar
net/sourceforge/tess4j/tess4j/4.4.1/tess4j-4.4.1.jar
net/java/dev/jna/jna/5.4.0/jna-5.4.0.jar
com/github/jai-imageio/jai-imageio-core/1.4.0/jai-imageio-core-1.4.0.jar
org/ghost4j/ghost4j/1.0.1/ghost4j-1.0.1.jar
log4j/log4j/1.2.17/log4j-1.2.17.jar
commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.jar
commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar
org/apache/xmlgraphics/xmlgraphics-commons/1.4/xmlgraphics-commons-1.4.jar
com/lowagie/itext/2.1.7/itext-2.1.7.jar
org/apache/pdfbox/pdfbox/2.0.17/pdfbox-2.0.17.jar
org/apache/pdfbox/fontbox/2.0.17/fontbox-2.0.17.jar
org/apache/pdfbox/pdfbox-tools/2.0.17/pdfbox-tools-2.0.17.jar
org/apache/pdfbox/pdfbox-debugger/2.0.17/pdfbox-debugger-2.0.17.jar
org/apache/pdfbox/jbig2-imageio/3.0.2/jbig2-imageio-3.0.2.jar
net/sourceforge/lept4j/lept4j/1.12.3/lept4j-1.12.3.jar
org/jboss/jboss-vfs/3.2.14.Final/jboss-vfs-3.2.14.Final.jar
org/jboss/logging/jboss-logging/3.1.4.GA/jboss-logging-3.1.4.GA.jar
ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar
ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar
org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
org/slf4j/jul-to-slf4j/1.7.28/jul-to-slf4j-1.7.28.jar
org/slf4j/jcl-over-slf4j/1.7.28/jcl-over-slf4j-1.7.28.jar
org/slf4j/log4j-over-slf4j/1.7.28/log4j-over-slf4j-1.7.28.jar
所需的tess4j文件,文件名称:tessdata/,这个文件你可以放在项目中,也可以放在其他位置但是路径不能写错
tessdata/
chi_sim.traineddata // 中文识别
eng.traineddata //数字识别 下载地址https://raw.githubusercontent.com/tesseract-ocr/tessdata/master/eng.traineddata
osd.traineddata
pdf.ttf
pdf.ttx
readme
tess4j官网文件下载:https://sourceforge.net/projects/tess4j/
破解网站码验证,Java实现,不调用任何平台api接口的更多相关文章
- 破解网站二维码验证,Java实现,不调用任何平台api接口
package image.images; import java.io.File; import java.io.IOException; import java.io.InputStream; i ...
- Java对接拼多多开放平台API(加密上云等全流程)
前言 本文为[小小赫下士 blog]原创,搬运请保留本段,或请在醒目位置设置原文地址和原作者. 作者:小小赫下士 原文地址:Java对接拼多多开放平台API(加密上云等全流程) 本文章为企业ERP(I ...
- Java生鲜电商平台-API接口设计之token、timestamp、sign 具体架构与实现(APP/小程序,传输安全)
Java生鲜电商平台-API接口设计之token.timestamp.sign 具体设计与实现 说明:在实际的业务中,难免会跟第三方系统进行数据的交互与传递,那么如何保证数据在传输过程中的安全呢(防窃 ...
- json-lib-2.4-jdk15.jar所需全部JAR包.rar java jsoup解析开彩网api接口json数据实例
json-lib-2.4-jdk15.jar所需全部JAR包.rar java jsoup解析开彩网api接口json数据实例 json-lib-2.4-jdk15.jar所需全部JAR包.rar ...
- 用Python调用华为云API接口发短信
[摘要] 用Python调用华为云API接口实现发短信,当然能给调用发短信接口前提条件是通过企业实名认证,而且有一个通过审核的短信签名,话不多说,showcode #!/usr/bin/python3 ...
- Angular 调用百度地图API接口
Angular 调用百度地图API接口 参考原文:https://blog.csdn.net/yuyinghua0302/article/details/80624274 下面简单介绍一下如何在Ang ...
- java EE技术体系——CLF平台API开发注意事项(4)——API生命周期治理简单说明
文档说明 截止日期:20170905,作者:何红霞,联系方式:QQ1028335395.邮箱:hehongxia626@163.com 综述 有幸加入到javaEE技术体系的研究与开发,也得益于大家的 ...
- Python如何调用新浪api接口的问题
前言:这些天在研究如何调用新浪开放平台的api分析新浪微博用户的数据 成果:成功调用了新浪api获取了用户的一些个人信息和无数条公共微博 不足:新浪开放平台访问有限制,返回的数据着实有限,不足以分析问 ...
- Java生鲜电商平台-API接口设计之token、timestamp、sign 具体设计与实现
转载:https://www.cnblogs.com/jurendage/p/12653865.html 说明:在实际的业务中,难免会跟第三方系统进行数据的交互与传递,那么如何保证数据在传输过程中的安 ...
随机推荐
- UnityBug之KeyStore
UnityException: Can not sign the applicationUnable to sign the application; please provide passwords ...
- Akamai CDN刷新(通过Akamai cli 自动刷新)
1.刷新类型选择 根据官方介绍,可使用多种途径和方式来完成快速刷新 按照简便快捷高效的要求,暂时选择Akamai cli + url 来完成刷新. 2.二进制文件下载地址 文件下载地址:https:/ ...
- Nexus3搭建Docker等私服
0.目的 docker私有仓库的搭建,方便后期的CI/CD dotnetcore项目sdk本地缓存,解决微软官方下载缓慢的问题 nuget私有仓库 等 1.环境情况 windows10 Docker ...
- 日常BUG-01 之 @Sl4j
问题描述: 需要打印日志,使用的是lombok包中的sl4j,lombok依赖如下: <dependency> <groupId>org.projectlombok</g ...
- Cobra框架使用手册
cobra框架使用手册 cobra是go语言的一个库,可以用于编写命令行工具. 概念 Cobra 结构由三部分组成:命令 (commands).参数 (arguments).标志 (flags).最好 ...
- frp+nginx内网穿透
frp+nginx内网穿透 背景:自己有台内网Linux主机,希望被外网访问(ssh.http.https): 准备工作 内网Linux主机-c,可以访问c主机和外网的主机-s(windows/lin ...
- AcWing 1273. 天才的记忆
从前有个人名叫 WNB,他有着天才般的记忆力,他珍藏了许多许多的宝藏. 在他离世之后留给后人一个难题(专门考验记忆力的啊!),如果谁能轻松回答出这个问题,便可以继承他的宝藏. 题目是这样的:给你一大串 ...
- 【Java集合】ArrayList源码分析
ArrayList是日常开发中经常使用到的集合,其底层采用数组实现,因此元素按序存放.其优点是可以使用下标来访问元素,时间复杂度是O(1).其缺点是删除和增加操作需要使用System.arraycop ...
- 其他:压力测试Jmeter工具使用
下载路径: http://yd01.siweidaoxiang.com:8070/jmeter_52z.com.zip 配置汉化中文: 找到jmeter的安装目录:打开 \bin\jmeter.pro ...
- Linux学习之路(RPM和YUM)
rpm包的管理 介绍: 一种用于互联网下载包的打包及安装工具(类似windows中的setup).它包含在某些Linux分发版中.它生成具有RPM扩展名的文件.RPM是RedHat软件包管理工具缩写, ...