IP2Proxy Java Component
This Java component supports all IP2Proxy™ BIN database products to query an IP address if it is being used as VPN anonymizer, open proxies, web proxies, Tor exits, data center, web hosting (DCH) range, search engine robots (SES) and residential (RES). It has been optimized for speed and memory utilization.
Installation
javac com/ip2proxy/*.java jar cf ip2proxy.jar com/ip2proxy/*.class
Sample Codes
import com.ip2proxy.*; public class Main { public Main() { } public static void main(String[] args) { try { IP2Proxy Proxy = new IP2Proxy(); ProxyResult All; int IsProxy; String ProxyType; String CountryShort; String CountryLong; String Region; String City; String ISP; String Domain; String UsageType; String ASN; String AS; String LastSeen; String Threat; String IP = "221.121.146.0"; if (Proxy.Open("C:\\data\\IP2PROXY-IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL.BIN", IP2Proxy.IOModes.IP2PROXY_MEMORY_MAPPED) == 0) { System.out.println("GetModuleVersion: " + Proxy.GetModuleVersion()); System.out.println("GetPackageVersion: " + Proxy.GetPackageVersion()); System.out.println("GetDatabaseVersion: " + Proxy.GetDatabaseVersion()); // reading all available fields All = Proxy.GetAll(IP); System.out.println("Is_Proxy: " + String.valueOf(All.Is_Proxy)); System.out.println("Proxy_Type: " + All.Proxy_Type); System.out.println("Country_Short: " + All.Country_Short); System.out.println("Country_Long: " + All.Country_Long); System.out.println("Region: " + All.Region); System.out.println("City: " + All.City); System.out.println("ISP: " + All.ISP); System.out.println("Domain: " + All.Domain); System.out.println("Usage_Type: " + All.Usage_Type); System.out.println("ASN: " + All.ASN); System.out.println("AS: " + All.AS); System.out.println("Last_Seen: " + All.Last_Seen); System.out.println("Threat: " + All.Threat); // reading individual fields IsProxy = Proxy.IsProxy(IP); System.out.println("Is_Proxy: " + String.valueOf(IsProxy)); ProxyType = Proxy.GetProxyType(IP); System.out.println("Proxy_Type: " + ProxyType); CountryShort = Proxy.GetCountryShort(IP); System.out.println("Country_Short: " + CountryShort); CountryLong = Proxy.GetCountryLong(IP); System.out.println("Country_Long: " + CountryLong); Region = Proxy.GetRegion(IP); System.out.println("Region: " + Region); City = Proxy.GetCity(IP); System.out.println("City: " + City); ISP = Proxy.GetISP(IP); System.out.println("ISP: " + ISP); Domain = Proxy.GetDomain(IP); System.out.println("Domain: " + Domain); UsageType = Proxy.GetUsageType(IP); System.out.println("UsageType: " + UsageType); ASN = Proxy.GetASN(IP); System.out.println("ASN: " + ASN); AS = Proxy.GetAS(IP); System.out.println("AS: " + AS); LastSeen = Proxy.GetLastSeen(IP); System.out.println("LastSeen: " + LastSeen); Threat = Proxy.GetThreat(IP); System.out.println("Threat: " + Threat); } else { System.out.println("Error reading BIN file."); } Proxy.Close(); } catch(Exception Ex) { System.out.println(Ex); } } }
Sample IP2Proxy Databases (BIN)
Sample Packages | IPv4 + IPv6 |
---|---|
IP2Proxy PX1 Sample BIN File | Download (29.42 MB) |
IP2Proxy PX2 Sample BIN File | Download (32.33 MB) |
IP2Proxy PX3 Sample BIN File | Download (38.40 MB) |
IP2Proxy PX4 Sample BIN File | Download (46.01 MB) |
IP2Proxy PX5 Sample BIN File | Download (48.17 MB) |
IP2Proxy PX6 Sample BIN File | Download (49.12 MB) |
IP2Proxy PX7 Sample BIN File | Download (52.22 MB) |
IP2Proxy PX8 Sample BIN File | Download (53.45 MB) |
IP2Proxy PX9 Sample BIN File | Download (53.84 MB) |
IP2Proxy PX10 Sample BIN File | Download (61.45 MB) |