Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在带有 APN 的 db 表中有一组子网和子网掩码。我想检索映射 APN。
10.0.0.0, 255.0.0.0, broadband
172.28.0.0, 255.255.0.0, internet
20.12.0.0, 255.255.0.0, video
如何在 Java 中将我的 ip 映射到一组给定的子网和子网掩码
使用以您的 ipaddress 作为键的非唯一键映射 (TreeMap),TreeMap 的值可以是另一个 TreeMap,子网是键,APN 作为值。
我希望这是你问的。
如果您要找出您的 IP 对应的 APN,则需要将每个子网掩码应用于 IP 地址,然后查找子网并检索 APN。
我不明白您是想在数据库、Java 还是两者之间的某种形式的协作上执行此操作。