一、什么是企业工商信息模糊查询?
输入社会统一信用代码/公司名称/注册号任意一个信息,查询相关企业的工商信息:包括公司名称、法定代表人、成立时间、登记状态、企业信用代码等。
二、企业工商信息模糊查询适用哪些场景?
比如:求职应聘参考
(1)求职者在寻找就业机会时,可能对某些企业有模糊的印象,但不确定准确名称。通过模糊查询相关信息,如企业所在地区、行业领域等,可以找到一系列符合条件的企业。然后查看这些企业的规模、经营状况等,判断是否有合适的岗位以及企业的发展前景。比如,一名求职者想在上海的金融行业找工作,通过模糊查询“上海”和“金融”,能获取上海金融企业的名单,进一步了解其招聘信息和企业实力,为求职提供更多选择。
(2)对于猎头公司来说,在为客户寻找合适的高端人才时,需要先对相关行业的企业进行梳理。利用模糊查询可以快速定位到目标行业的企业,了解其人才需求和企业特点,以便更精准地推荐合适的人才。例如,猎头公司要为一家大型互联网企业寻找高级算法工程师,通过模糊查询“互联网”相关关键词,找到大量互联网企业,分析其对算法工程师的需求情况,从而更好地完成人才匹配。
三、如何利用Java实现企业工商信息模糊查询?
以阿里云服务商快证API为例,该接口支持4种语言:
public static void main(String[] args) {
String host = "https://kzgsmhv1.market.alicloudapi.com";
String path = "/api/company_search/query";
String method = "POST";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
Map<String, String> bodys = new HashMap<String, String>();
bodys.put("keyword", "keyword");
bodys.put("pageNum", "pageNum");
bodys.put("pageSize", "pageSize");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity()));
} catch (Exception e) {
e.printStackTrace();
}
}
正确返回示例:
public static void main(String[] args) {
String host = "https://kzgsmhv1.market.alicloudapi.com";
String path = "/api/company_search/query";
String method = "POST";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
Map<String, String> bodys = new HashMap<String, String>();
bodys.put("keyword", "keyword");
bodys.put("pageNum", "pageNum");
bodys.put("pageSize", "pageSize");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity()));
} catch (Exception e) {
e.printStackTrace();
}
}