当前位置:网站首页>Day26 IP query items
Day26 IP query items
2022-07-07 12:56:00 【Xiaobai shelter】
IP Online inquiry platform of ownership
One 、 Project introduction
1. background
according to IP Get the position , Tag
Do big data analysis , For example, Taobao Recommendation provides high-quality data
www.ip.cn etc. Inquire about IP
2. demand
IP analysis Attribution information , Lookup completed in milliseconds
IP Address base , The public network is open
IANA : international organization , Responsible for public network IP Maintenance Distribution
3. Technology stack
Eclipse ,JavaSE Object oriented in 、IO flow 、 Dichotomy algorithm 、Base64 code 、 Tool class encapsulation
4. The goal is
By developing IP Address attribution query platform , We need to be right about JavaSE The comprehensive technology has been improved , Enhance actual combat capability . After studying this project, we should have the following abilities :
1 Object oriented programming
2 Tool class encapsulation and usage writing
3 file IO flow
4 string manipulation
5 Binary search
6 IP Different forms of address use
Two 、 Main idea
1 Read the content in the program
2 analysis IP character string , Structured processing
3 Wrapper utility class
4 Interface API
Enter the reference : IP
The ginseng : Place of ownership
3、 ... and 、 Main idea
Application development projects
C/S structure , Need to have a specific client , such as QQ, WeChat ,eclipse
Web Development projects
B/S Structure first . An online system accessed through a web page , For example, various official websites , Various management systems, etc
Standard R & D process of small and medium-sized projects
1 Requirements overview - Requirements describe : Explain why you did this project
according to IP Get the place of belonging
2 Demand analysis :
According to the demand Overview , Consider it from a technical point of view , Is it feasible
Three aspects : 1 Input , 2 Output , 3 Necessary materials ( Address base )
Input : Given an arbitrary legal IP Address
Output : return IP Address library corresponding to address
3 Development steps
1 Read IP Address base
2 Resolve the information of the address Library , Structured processing
3 Save the object to list in
4 Do a binary search , Increase of efficiency
5 An interface that provides external access
6 test
4 Detail development and risk control
5 BUG Repair , tuning , Standardization
6 The official launch
7 Project summary - Project resumption
Four 、 Code development
1 Mindless reading files
public class TestFileIO_01 {
public static void main(String args[]){
try{
//1 File path
String ipLibrayPath="ip_location_relation.txt";
String encoding="UTF-8";
//2 Node stream docking file
FileInputStream fis=new FileInputStream(ipLibrayPath);
//3 Convert to character stream and specify character encoding
Reader reader=new InputStreamReader(fis,encoding);
//4 Buffering streams improves efficiency
BufferedReader br=new BufferedReader(reader);
//5 Read
String line=null;
while((line=br.readLine())!=null){
System.out.println(line);
}
//6 close
br.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
2… Text file reading tool class
Abstract tool class
1 By coding , Realize input and output
2 Abstract input and output , Form method input and output parameters
3 Implement and test the tool class code
2.1 Tool class code
public class FileOperatorUtil {
public static List<String> getLineList(String filePath, String encoding) {
// TODO Auto-generated method stub
return null;
}
}
2.2 Tool class test
public class TestFileIO_02 {
public static void main(String args[]){
//1. File path
String ipLibrayPath="ip_location_relation.txt";
String encoding="UTF-8";
try{
List<String> lineList=FileOperatorUtile.getLineList(ipLibrayPath,encoding);
for(String string:lineList){
System.out.println(string);
}
}catch(IOException e){
e.printStackTrace();
}
}
}
- structured
structured : When we know the format of the first data , Then the data format of the second has been determined , There are rules to follow , Convenient operation
Based on unstructured data , Find the corresponding rule , And create corresponding entity classes for encapsulation , Convert to structured data - Abstract entity classes and save data
4.1 Entity class
边栏推荐
- CMU15445 (Fall 2019) 之 Project#2 - Hash Table 详解
- 通讯协议设计与实现
- Sequoia China completed the new phase of $9billion fund raising
- HZOJ #236. Recursive implementation of combinatorial enumeration
- What if does not match your user account appears when submitting the code?
- 认养一头牛冲刺A股:拟募资18.5亿 徐晓波持股近40%
- .Net下极限生产力之efcore分表分库全自动化迁移CodeFirst
- [statistical learning method] learning notes - logistic regression and maximum entropy model
- leetcode刷题:二叉树20(二叉搜索树中的搜索)
- 2022 examination questions and online simulation examination for safety production management personnel of hazardous chemical production units
猜你喜欢

Several ways to clear floating

ACL 2022 | small sample ner of sequence annotation: dual tower Bert model integrating tag semantics
![[pytorch practice] use pytorch to realize image style migration based on neural network](/img/20/8ed7113115709b6169be289b0c280a.png)
[pytorch practice] use pytorch to realize image style migration based on neural network

Session
![[statistical learning method] learning notes - support vector machine (Part 2)](/img/bc/bb4f809ff434fabc10f8e97f592fa7.png)
[statistical learning method] learning notes - support vector machine (Part 2)

Go语言学习笔记-结构体(Struct)

How to apply @transactional transaction annotation to perfection?

Common knowledge of one-dimensional array and two-dimensional array

Day-19 IO stream

图像像素读写操作
随机推荐
企业级自定义表单引擎解决方案(十二)--体验代码目录结构
2022A特种设备相关管理(锅炉压力容器压力管道)模拟考试题库模拟考试平台操作
【从 0 开始学微服务】【02】从单体应用走向服务化
2022 polymerization process test question simulation test question bank and online simulation test
高瓴投的澳斯康生物冲刺科创板:年营收4.5亿 丢掉与康希诺合作
Leetcode brush questions: binary tree 19 (merge binary tree)
Leetcode skimming: binary tree 22 (minimum absolute difference of binary search tree)
详解ThinkPHP支持的URL模式有四种普通模式、PATHINFO、REWRITE和兼容模式
test
[crawler] avoid script detection when using selenium
visual stdio 2017关于opencv4.1的环境配置
爱可可AI前沿推介(7.7)
mysql怎么创建,删除,查看索引?
基于NeRF的三维内容生成
Leetcode skimming: binary tree 23 (mode in binary search tree)
测试下摘要
Session
【无标题】
环境配置篇
Aike AI frontier promotion (7.7)