IpRegionFactoryTest.java 382 字节
Newer Older
M
MaxKey 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package org.maxkey.web.ipregion;

import org.junit.Test;

public class IpRegionFactoryTest {

	@Test
	public void test(){
		System.out.println(IpRegionFactory.getFactory().getLocation(
				IpRegionFactory.getFactory().region("127.0.0.1")
				));
		
		System.out.println(IpRegionFactory.getFactory().getLocation(
				IpRegionFactory.getFactory().region("117.155.70.59")
				));
	}
}