• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java UrlSpaceConfigurer类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.openspaces.core.space.UrlSpaceConfigurer的典型用法代码示例。如果您正苦于以下问题:Java UrlSpaceConfigurer类的具体用法?Java UrlSpaceConfigurer怎么用?Java UrlSpaceConfigurer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



UrlSpaceConfigurer类属于org.openspaces.core.space包,在下文中一共展示了UrlSpaceConfigurer类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: main

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public static void main(String[] args) throws Exception {
    if (args.length == 0) {
        throw new IllegalArgumentException("Must specify the space url");
    }

    String spaceUrl = args[0];
    UrlSpaceConfigurer urlSpaceConfigurer = new UrlSpaceConfigurer(spaceUrl);
    GigaSpace gigaSpace = new GigaSpaceConfigurer(urlSpaceConfigurer.space()).gigaSpace();

    ExecutorSpaceRemotingProxyFactoryBean remotingProxyFactoryBean = new ExecutorSpaceRemotingProxyFactoryBean();
    remotingProxyFactoryBean.setGigaSpace(gigaSpace);
    remotingProxyFactoryBean.setServiceInterface(RefreshableContextLoader.class);
    remotingProxyFactoryBean.setBroadcast(true);
    remotingProxyFactoryBean.afterPropertiesSet();

    RefreshableContextLoader refreshableContextLoader = (RefreshableContextLoader) remotingProxyFactoryBean.getObject();
    refreshableContextLoader.refresh();

    urlSpaceConfigurer.destroy();
}
 
开发者ID:Gigaspaces,项目名称:xap-openspaces,代码行数:21,代码来源:RefreshContextLoaderExecutor.java


示例2: testSimpleConfigurer

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public void testSimpleConfigurer() throws Exception {
    UrlSpaceConfigurer urlSpaceConfigurerPrimary = new UrlSpaceConfigurer("/./space").lookupGroups(System.getProperty("user.name"));

    final AtomicBoolean eventCalled = new AtomicBoolean();

    GigaSpace gigaSpace = new GigaSpaceConfigurer(urlSpaceConfigurerPrimary.space()).gigaSpace();

    SimpleAsyncPollingEventListenerContainer pollingEventListenerContainer = new SimpleAsyncPollingContainerConfigurer(gigaSpace)
            .template(new TestMessage())
            .eventListenerAnnotation(new Object() {
                @SpaceDataEvent
                public void gotMeselfAnEvent() {
                    eventCalled.set(true);
                }
            }).pollingContainer();
    gigaSpace.write(new TestMessage("test"));
    Thread.sleep(500);
    assertTrue(eventCalled.get());

    pollingEventListenerContainer.destroy();
    urlSpaceConfigurerPrimary.destroy();
}
 
开发者ID:Gigaspaces,项目名称:xap-openspaces,代码行数:23,代码来源:SimpleAsyncPollingContainerConfigurerTests.java


示例3: testSimpleConfigurer

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public void testSimpleConfigurer() throws Exception {
    UrlSpaceConfigurer urlSpaceConfigurerPrimary = new UrlSpaceConfigurer("/./space").lookupGroups(System.getProperty("user.name"));

    final AtomicBoolean eventCalled = new AtomicBoolean();

    GigaSpace gigaSpace = new GigaSpaceConfigurer(urlSpaceConfigurerPrimary.space()).gigaSpace();

    SimpleNotifyEventListenerContainer notifyEventListenerContainer = new SimpleNotifyContainerConfigurer(gigaSpace)
            .template(new TestMessage())
            .eventListenerAnnotation(new Object() {
                @SpaceDataEvent
                public void gotMeselfAnEvent() {
                    eventCalled.set(true);
                }
            }).notifyContainer();
    gigaSpace.write(new TestMessage("test"));
    Thread.sleep(200);
    assertTrue(eventCalled.get());

    notifyEventListenerContainer.destroy();
    urlSpaceConfigurerPrimary.destroy();
}
 
开发者ID:Gigaspaces,项目名称:xap-openspaces,代码行数:23,代码来源:SimpleNotifyContainerConfigurerTests.java


示例4: testSimpleIterator

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public void testSimpleIterator() {
    UrlSpaceConfigurer urlSpaceConfigurer = new UrlSpaceConfigurer("/./space").lookupGroups(System.getProperty("user.name"));
    GigaSpace gigaSpace = new GigaSpaceConfigurer(urlSpaceConfigurer.space()).gigaSpace();

    for (int i = 0; i < 50; i++) {
        TestMessage testMessage = new TestMessage();
        testMessage.id = i;
        gigaSpace.write(testMessage);
    }

    GSIterator it = gigaSpace.iterator().iteratorScope(IteratorScope.CURRENT_AND_FUTURE).addTemplate(new TestMessage()).iterate();
    int counter = 0;
    for (Object test : it) {
        counter++;
    }
    assertEquals(50, counter);
}
 
开发者ID:Gigaspaces,项目名称:xap-openspaces,代码行数:18,代码来源:SimpleIteratorTests.java


示例5: initGigaSpaces

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
/**
 * Creates a reference to the remote space. Make sure you start a data grid
 * with the name "xapTutorialSessionSpace" before this code is called
 */
protected void initGigaSpaces() {
	IJSpace space = new UrlSpaceConfigurer(
			"jini://*/*/xapTutorialSessionSpace").lookupTimeout(20000)
			.space();
	gigaSpace = new GigaSpaceConfigurer(space).gigaSpace();

	/*
	 * you can uncomment the below line and comment the two above if the
	 * application is deployed to the GigaSpaces environment and the space
	 * is defined inside the META-INF/pu.xml file. In such case the
	 * GigaSpaces environment automatically inserts it to the ServletContext
	 * of the application
	 */
	// gigaSpace = (GigaSpace)
	// getServletContext().getAttribute("gigaSpace");
}
 
开发者ID:Gigaspaces,项目名称:xap-tutorial,代码行数:21,代码来源:AccessSpaceServlet.java


示例6: main

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
/**
 * @param args
 */
public static void main(String[] args) {

	GigaSpace space = new GigaSpaceConfigurer(new UrlSpaceConfigurer(url))
			.gigaSpace();

	for (int i = 0; i < 1000; i++) {
		AuditRecord audit = new AuditRecord();
		audit.setId(new Long(i));
		audit.setApplication("Financial Application");
		audit.setUserName("user" + i);
		audit.setAuditContent("<Transaction id =100 Amount= 200.00 US$");
		audit.setTimeStamp(new Long(123456744));

		space.write(audit);
	}
}
 
开发者ID:Gigaspaces,项目名称:xap-tutorial,代码行数:20,代码来源:CassandraTest.java


示例7: initSpace

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
protected void initSpace ()
throws Exception
{
    if (_spaceUrl==null)
        throw new IllegalStateException ("No url for space");
    
    UrlSpaceConfigurer usc = new UrlSpaceConfigurer(_spaceUrl);
    LocalCacheSpaceConfigurer lcsc = new LocalCacheSpaceConfigurer(usc.space()); 
    GigaSpaceConfigurer gigaSpaceConfigurer = new GigaSpaceConfigurer(usc.space());
    _space = gigaSpaceConfigurer.gigaSpace();     
    _query = new SQLQuery(SessionData.class, "expiryTime < ?");
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:13,代码来源:GigaSessionManager.java


示例8: initSpace

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
protected void initSpace ()
throws Exception
{
    if (_spaceUrl==null)
        throw new IllegalStateException ("No url for space");
    
    UrlSpaceConfigurer usc = new UrlSpaceConfigurer(_spaceUrl);
    LocalCacheSpaceConfigurer lcsc = new LocalCacheSpaceConfigurer(usc.space()); 
    GigaSpaceConfigurer gigaSpaceConfigurer = new GigaSpaceConfigurer(usc.space());
    _space = gigaSpaceConfigurer.gigaSpace();
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:12,代码来源:GigaSessionIdManager.java


示例9: initialize

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public void initialize() {
    // Set a space proxy using the provided connection url
	// if the space was injected - do nothing.
    if (_space == null) {
        Value configurationValue = getValue("ConnectionFactory");
        if (configurationValue != null && configurationValue.get() != null)
            _space = (IJSpace) configurationValue.get();
        else            
            _space = new UrlSpaceConfigurer(getConnectionURL()).space();
        
        //if configured to use optimistic locking - set it on the space proxy
        if(getOptimistic())
            _space.setOptimisticLocking(true);
    }
    
    // Create a transaction manager
    TransactionManagerConfiguration configuration = new TransactionManagerConfiguration(TransactionManagerType.DISTRIBUTED);
    try {
        _transactionManagerProvider = TransactionManagerProviderFactory.newInstance(_space, configuration);
    } catch (Exception e) {
        throw new RuntimeException(e.getMessage(), e);
    }
    
    // Set read lock level (modifier)
    if(getReadLockLevel().equals("write"))
    {
        _readModifier = ReadModifiers.EXCLUSIVE_READ_LOCK;
    }else if(getOptimistic())
    {
        //use read committed isolation level for optimistic locking - to avoid object locking on read operation
        _readModifier = ReadModifiers.READ_COMMITTED;
    }
    else
    {
        _readModifier =  ReadModifiers.REPEATABLE_READ;
    }
}
 
开发者ID:Gigaspaces,项目名称:xap-openspaces,代码行数:38,代码来源:SpaceConfiguration.java


示例10: bind

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
@Override
public <T> BoundServiceBeanInstance<T> bind(
		ServiceDefinition<T> serviceDefinition,
		ServiceProperties serviceProperties) {
	Class<T> type = serviceDefinition.getServiceType();
	if (!GigaSpace.class.isAssignableFrom(type)) {
		throw new UnsupportedTargetTypeException(getName(), type);
	}
	if (disableLocalView.get()) {
		log.info("LocalView is disabled. Creating reqular proxy");
		return clusteredProxyBinder.bind(serviceDefinition, serviceProperties);
	}
	log.info("Creating local view. bean={} serviceProperties={}", serviceDefinition.getBeanKey(), serviceProperties.getProperties());
	// TODO: protect creation of localView with fault-tolerance?
	Class<LocalViewConfigurer> serviceConfigClass = serviceDefinition.getServiceConfigClass(LocalViewConfigurer.class);	
	LocalViewConfigurer localViewConfigurer = ReflectionUtil.newInstance(serviceConfigClass);
	UrlSpaceConfigurer gsSpaceConfigurer = new UrlSpaceConfigurer(serviceProperties.getProperty(GsBinder.SPACE_URL_PROPERTY));
	IJSpace space = gsSpaceConfigurer.lookupTimeout(this.lookupTimeout.get())
			// Disable memory shortage check for local view clients
			.addParameter("space-config.engine.memory_usage.enabled", "false").create();
	
	LocalViewSpaceConfigurer gslocalViewSpaceConfigurer = new LocalViewSpaceConfigurer(space);
	gslocalViewSpaceConfigurer.maxDisconnectionDuration(this.maxDisonnectionTime.get());
	localViewConfigurer.configure(new LocalViewSpaceConfigurerAdapter(gslocalViewSpaceConfigurer));
	
	String spaceName = serviceProperties.getProperty(GsBinder.SPACE_NAME_PROPERTY);
	String commandKey = spaceName + "_" + GigaSpace.class.getSimpleName();
	String qualifier = serviceProperties.getProperty(ServiceProperties.QUALIFIER);
	if (qualifier != null) {
		commandKey = commandKey + "-" + qualifier;
	}
	
	IJSpace localViewSpace = gslocalViewSpaceConfigurer.create();
	GigaSpace localViewGigaSpace = GigaSpaceProxy.create(new GigaSpaceConfigurer(localViewSpace).create());
	
	BoundLocalViewGigaSpaceBeanInstance localViewGigaSpaceBeanInstance = 
			new BoundLocalViewGigaSpaceBeanInstance(localViewGigaSpace, gslocalViewSpaceConfigurer, gsSpaceConfigurer);
	return (BoundServiceBeanInstance<T>) localViewGigaSpaceBeanInstance;
}
 
开发者ID:AvanzaBank,项目名称:astrix,代码行数:40,代码来源:GsLocalViewComponent.java


示例11: BoundLocalViewGigaSpaceBeanInstance

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public BoundLocalViewGigaSpaceBeanInstance(GigaSpace instance,
										   LocalViewSpaceConfigurer localViewSpaceConfigurer,
										   UrlSpaceConfigurer spaceConfigurer) {
	this.instance = instance;
	this.localViewSpaceConfigurer = localViewSpaceConfigurer;
	this.spaceConfigurer = spaceConfigurer;
}
 
开发者ID:AvanzaBank,项目名称:astrix,代码行数:8,代码来源:GsLocalViewComponent.java


示例12: GigaSpaceInstance

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public GigaSpaceInstance(String spaceUrl, DynamicConfig dynamicConfig) {
	this.spaceUrl = spaceUrl;
	this.config = dynamicConfig;
	this.urlSpaceConfigurer = new UrlSpaceConfigurer(spaceUrl);
	IJSpace space = urlSpaceConfigurer.create();
	this.proxy = new GigaSpaceConfigurer(space).create();
}
 
开发者ID:AvanzaBank,项目名称:astrix,代码行数:8,代码来源:ClusteredProxyCacheImpl.java


示例13: configureGigaSpaceProxy

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public static GigaSpace configureGigaSpaceProxy(String spaceUrl) {
  	GigaSpace gigaSpace;
  	try {
  		gigaSpace = new GigaSpaceConfigurer(new UrlSpaceConfigurer(spaceUrl)).gigaSpace();	
}catch(Exception e) {
	e.printStackTrace();
	throw(new RuntimeException(e));
}
  	return gigaSpace;
  }
 
开发者ID:Gigaspaces,项目名称:xap-drools-integration,代码行数:11,代码来源:GigaSpacesUtils.java


示例14: createSecureSpace

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public void createSecureSpace() {
	UrlSpaceConfigurer urlSpaceConfigurer = new UrlSpaceConfigurer(
			"/./xapTutorialSpace").secured(true);
	@SuppressWarnings("unused")
	GigaSpace gigaSpace = new GigaSpaceConfigurer(urlSpaceConfigurer)
			.gigaSpace();
}
 
开发者ID:Gigaspaces,项目名称:xap-tutorial,代码行数:8,代码来源:SecurityService.java


示例15: connectToSecureSpace

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
public void connectToSecureSpace() {
	SecurityConfig config = new SecurityConfig();
	config.setPassword("student2");
	config.setUsername("student2");

	UrlSpaceConfigurer urlSpaceConfigurer = new UrlSpaceConfigurer(
			"jini://*/*/xapTutorialSpace").securityConfig(config);

	@SuppressWarnings("unused")
	GigaSpace gigaSpace = new GigaSpaceConfigurer(urlSpaceConfigurer)
			.gigaSpace();
}
 
开发者ID:Gigaspaces,项目名称:xap-tutorial,代码行数:13,代码来源:SecurityService.java


示例16: afterPropertiesSet

import org.openspaces.core.space.UrlSpaceConfigurer; //导入依赖的package包/类
@Override
public void afterPropertiesSet(){
	// Create Remote Proxy
	UrlSpaceConfigurer urlConfigurer = new UrlSpaceConfigurer(SPACE_URL);
	GigaSpace remoteProxy = new GigaSpaceConfigurer(urlConfigurer).gigaSpace();

	ExecutorService executorService = null;

	// complex
	// String sandy1 =
	// "[-71.92185974121094,40.31254577636719],[-71.79681396484375,40.20048904418945],[-71.67333221435547,40.08822250366211],[-71.55033111572266,39.97538375854492],[-71.42825317382812,39.862491607666016],[-71.30814361572266,39.75067901611328],[-71.1907730102539,39.64076232910156],[-71.07635498046875,39.532859802246094],[-70.9648666381836,39.42687225341797],[-70.85619354248047,39.323028564453125],[-70.75016784667969,39.22160339355469],[-70.64662170410156,39.12236785888672],[-70.54557800292969,39.02468490600586],[-70.44719696044922,38.92826461791992],[-70.35130310058594,38.83347702026367],[-70.25706481933594,38.74059295654297],[-70.16346740722656,38.648651123046875],[-70.07044982910156,38.555259704589844],[-69.97982788085938,38.457618713378906],[-69.89495849609375,38.35377502441406],[-69.81965637207031,38.2432861328125],[-69.75686645507812,38.12701416015625],[-69.70796203613281,38.00672149658203],[-69.67250061035156,37.88468933105469],[-69.64837646484375,37.763343811035156],[-69.63243103027344,37.64459228515625],[-69.6213607788086,37.5291748046875],[-69.61265563964844,37.41650390625],[-69.60496520996094,37.305320739746094],[-69.59773254394531,37.1945915222168],[-69.59070587158203,37.08395004272461],[-69.58373260498047,36.973594665527344],[-69.57688903808594,36.86406326293945],[-69.57041931152344,36.756160736083984],[-69.56429290771484,36.65070724487305],[-69.55818176269531,36.54805374145508],[-69.55181884765625,36.44781494140625],[-69.54541015625,36.34934997558594],[-69.53951263427734,36.25251388549805],[-69.5343017578125,36.15776824951172],[-69.52920532226562,36.0653076171875],[-69.5234375,35.97425842285156],[-69.51679992675781,35.88298797607422],[-69.50994873046875,35.79034423828125],[-69.50363159179688,35.696617126464844],[-69.49797058105469,35.60311508178711],[-69.49250030517578,35.510955810546875],[-69.48712158203125,35.420074462890625],[-69.48300170898438,35.32942199707031],[-69.48259735107422,35.2379150390625],[-69.48881530761719,35.14529037475586],[-69.5041275024414,35.052268981933594],[-69.52989196777344,34.96012878417969],[-69.56636810302734,34.870216369628906],[-69.61266326904297,34.78367233276367],[-69.66687774658203,34.701332092285156],[-69.7262954711914,34.623634338378906],[-69.78800964355469,34.550540924072266],[-69.84976196289062,34.48150634765625],[-69.91035461425781,34.415771484375],[-69.96947479248047,34.352622985839844],[-70.0270767211914,34.291500091552734],[-70.08320617675781,34.231727600097656],[-70.13822937011719,34.17243957519531],[-70.19285583496094,34.11286163330078],[-70.24774932861328,34.052757263183594],[-70.302978515625,33.992462158203125],[-70.35807037353516,33.93238067626953],[-70.41259002685547,33.87261962890625],[-70.466552734375,33.813133239746094],[-70.52009582519531,33.75411605834961],[-70.572998046875,33.69611740112305],[-70.62461853027344,33.6396484375],[-70.67449951171875,33.58476257324219],[-70.72290802001953,33.531097412109375],[-70.77064514160156,33.47834396362305],[-70.81819915771484,33.42656707763672],[-70.86524200439453,33.3759765625],[-70.91102600097656,33.326419830322266],[-70.9552993774414,33.27720642089844],[-70.99881744384766,33.227535247802734],[-71.04276275634766,33.177120208740234],[-71.08781433105469,33.12630081176758],[-71.13359069824219,33.07563018798828],[-71.1790771484375,33.025386810302734],[-71.22354125976562,32.975502014160156],[-71.26728820800781,32.92596435546875],[-71.31159210205078,32.87717819213867],[-71.3580093383789,32.829986572265625],[-71.40753173828125,32.78534698486328],[-71.46009063720703,32.74395751953125],[-71.51461029052734,32.706016540527344],[-71.56953430175781,32.67124557495117],[-71.62355041503906,32.63903045654297],[-71.67604064941406,32.60871887207031],[-71.72702026367188,32.57975769042969],[-71.7767333984375,32.55174255371094],[-71.82537841796875,32.5242919921875],[-71.8731689453125,32.4970588684082],[-71.92042541503906,32.46984100341797],[-71.96737670898438,32.442726135253906],[-72.01388549804688,32.416015625],[-72.05937194824219,32.389991760253906],[-72.10333251953125,32.36472702026367],[-72.14576721191406,32.34014892578125],[-72.1871109008789,32.31623077392578],[-72.22775268554688,32.2931022644043],[-72.26752471923828,32.270896911621094],[-72.30584716796875,32.24953079223633],[-72.34236145019531,32.22865676879883],[-72.37744140625,32.20786666870117],[-72.41207885742188,32.18699645996094],[-72.44715881347656,32.16625213623047],[-72.48290252685547,32.14595031738281],[-72.51873779296875,32.126197814941406],[-72.55375671386719,32.106754302978516],[-72.58736419677734,32.087242126464844],[-72.61965942382812,32.067527770996094],[-72.65125274658203,32.04792785644531],[-72.68278503417969,32.02912902832031],[-72.71437072753906,32.011775970458984],[-72.74540710449219,31.996124267578125],[-72.77484893798828,31.98181915283203],[-72.80187225341797,31.967994689941406],[-72.82642364501953,31.953691482543945],[-72.84934997558594,31.938323974609375],[-72.8719482421875,31.921995162963867],[-72.89543914794922,31.905406951904297],[-72.92050170898438,31.889522552490234],[-72.94734954833984,31.875200271606445],[-72.975830078125,31.863033294677734],[-73.00566864013672,31.853361129760742],[-73.03654479980469,31.84636116027832],[-73.06809997558594,31.84212875366211],[-73.0999984741211,31.840709686279297],[-73.13190460205078,31.842126846313477],[-73.16346740722656,31.846359252929688],[-73.1943359375,31.853364944458008],[-73.22418212890625,31.863065719604492],[-73.25267028808594,31.87535858154297],[-73.27950286865234,31.890106201171875],[-73.30438232421875,31.907150268554688],[-73.3270263671875,31.926301956176758],[-73.34721374511719,31.947357177734375],[-73.36470031738281,31.970083236694336],[-73.3792953491211,31.994232177734375],[-73.39083862304688,32.0195426940918],[-73.39920043945312,32.04573440551758],[-73.404296875,32.07252883911133],[-73.40605163574219,32.09962463378906],[-73.40445709228516,32.12673568725586],[-73.39952850341797,32.1535530090332],[-73.3913345336914,32.1798095703125],[-73.3800277709961,32.205284118652344],[-73.36589050292969,32.22991180419922],[-73.34949493408203,32.25386047363281],[-73.33165740966797,32.277645111083984],[-73.31336975097656,32.302001953125],[-73.29546356201172,32.32761764526367],[-73.27825164794922,32.35481262207031],[-73.26136779785156,32.38336181640625],[-73.24402618408203,32.4127197265625],[-73.22547912597656,32.442413330078125],[-73.20547485351562,32.47237777709961],[-73.18431091308594,32.502967834472656],[-73.16261291503906,32.53466033935547],[-73.14081573486328,32.56767272949219],[-73.11890411376953,32.60183334350586],[-73.09646606445312,32.636802673339844],[-73.07307434082031,32.67242431640625],[-73.04861450195312,32.708831787109375],[-73.02336120605469,32.746246337890625],[-72.99768829345703,32.78458786010742],[-72.97183990478516,32.82334518432617],[-72.94590759277344,32.86185836791992],[-72.91995239257812,32.899803161621094],[-72.89405059814453,32.937503814697266],[-72.86810302734375,32.97578811645508],[-72.84174346923828,33.015472412109375],[-72.8144302368164,33.056976318359375],[-72.7857666015625,33.10028839111328],[-72.7557144165039,33.14521026611328],[-72.72447967529297,33.191566467285156],[-72.69229125976562,33.239280700683594],[-72.6593017578125,33.28831481933594],[-72.62576293945312,33.33867645263672],[-72.59224700927734,33.390411376953125],[-72.55970764160156,33.44358444213867],[-72.52912902832031,33.49830627441406],[-72.50103759765625,33.55478286743164],[-72.4750747680664,33.613311767578125],[-72.45006561279297,33.67417907714844],[-72.424560546875,33.73752212524414],[-72.39765930175781,33.803260803222656],[-72.36935424804688,33.87109375],[-72.3402328491211,33.94045639038086],[-72.31082153320312,34.010581970214844],[-72.28128051757812,34.08076477050781],[-72.25154113769531,34.15068817138672],[-72.22163391113281,34.22059631347656],[-72.19165802001953,34.2911376953125],[-72.16153717041016,34.36294174194336],[-72.13092041015625,34.43635940551758],[-72.09944152832031,34.51145935058594],[-72.06697845458984,34.588253021240234],[-72.03364562988281,34.666847229003906],[-71.99961853027344,34.747379302978516],[-71.96532440185547,34.829833984375],[-71.93193817138672,34.91394805908203],[-71.90193176269531,34.999244689941406],[-71.87886047363281,35.08539962768555],[-71.86637878417969,35.172672271728516],[-71.86692810058594,35.26203155517578],[-71.8808364868164,35.35476303100586],[-71.90635681152344,35.45170211791992],[-71.94056701660156,35.55269241333008],[-71.98036193847656,35.656646728515625],[-72.02313232421875,35.76218795776367],[-72.06708526611328,35.86827850341797],[-72.11138916015625,35.974456787109375],[-72.15592193603516,36.080665588378906],[-72.20074462890625,36.18693542480469],[-72.24581146240234,36.293174743652344],[-72.2912826538086,36.399131774902344],[-72.33817291259766,36.50446319580078],[-72.38888549804688,36.6086540222168],[-72.44700622558594,36.710811614990234],[-72.51657104492188,36.80970001220703],[-72.60099792480469,36.904296875],[-72.70210266113281,36.99454116821289],[-72.81951904296875,37.08148956298828],[-72.95100402832031,37.16673278808594],[-73.0930404663086,37.25151443481445],[-73.24185943603516,37.33638381958008],[-73.3942642211914,37.42133331298828],[-73.5486068725586,37.506072998046875],[-73.7054672241211,37.59004211425781],[-73.86771392822266,37.67223358154297],[-74.03958892822266,37.75099563598633],[-74.22515869140625,37.823974609375],[-74.42666625976562,37.88849639892578],[-74.64381408691406,37.942413330078125],[-74.87431335449219,37.9850959777832],[-75.11564636230469,38.01780319213867],[-75.36628723144531,38.043174743652344],[-75.62582397460938,38.06418228149414],[-75.89397430419922,38.08320617675781],[-76.16972351074219,38.101783752441406],[-76.45152282714844,38.121063232421875],[-76.73794555664062,38.14262390136719],[-77.02803039550781,38.16913604736328],[-77.32068634033203,38.20446014404297],[-77.61393737792969,38.25297164916992],[-77.90458679199219,38.31858825683594],[-78.18869018554688,38.40394592285156],[-78.46223449707031,38.51017761230469],[-78.72161102294922,38.63718032836914],[-78.96372985839844,38.784034729003906],[-79.18587493896484,38.949371337890625],[-79.38565063476562,39.13159942626953],[-79.56102752685547,39.329132080078125],[-79.7106704711914,39.54066467285156],[-79.83444213867188,39.76546096801758],[-79.93400573730469,40.00328826904297],[-80.01303100585938,40.253883361816406],[-80.07671356201172,40.51612854003906],[-80.13056182861328,40.78770446777344],[-80.17919921875,41.0655517578125],[-80.2256851196289,41.34681701660156],[-80.27168273925781,41.62952423095703],[-80.31785583496094,41.91266632080078],[-80.36443328857422,42.1959114074707],[-80.41134643554688,42.47932815551758],[-80.4582290649414,42.76331329345703],[-80.50420379638672,43.048484802246094],[-80.54768371582031,43.33549499511719],[-80.58660888671875,43.624839782714844],[-80.61934661865234,43.9171028137207],[-80.64549255371094,44.213623046875],[-80.6661605834961,44.516849517822266],[-80.68330383300781,44.82965850830078],[-80.69874572753906,45.15398406982422],[-80.71366119384766,45.49024200439453],[-80.72856903076172,45.83806228637695],[-80.74302673339844,46.1976318359375],[-80.75483703613281,46.56983184814453],[-80.75885009765625,46.954891204833984],[-80.74657440185547,47.35069274902344],[-80.70693969726562,47.7524528503418],[-80.62825012207031,48.1539306640625],[-80.50042724609375,48.5490608215332],[-80.31654357910156,48.932762145996094],[-80.07319641113281,49.300750732421875],[-79.76991271972656,49.64905548095703],[-79.40838623046875,49.97373962402344],[-78.99182891845703,50.270904541015625],[-78.52474212646484,50.53684997558594],[-78.01321411132812,50.76823425292969],[-77.46548461914062,50.962215423583984],[-76.89228820800781,51.11668395996094],[-76.30584716796875,51.23033142089844],[-75.71685791015625,51.302642822265625],[-75.13117980957031,51.33360290527344],[-74.54879760742188,51.32330322265625],[-73.96708679199219,51.271697998046875],[-73.38602447509766,51.17869186401367],[-72.81136322021484,51.044517517089844],[-72.25367736816406,50.87006378173828],[-71.72492218017578,50.65705871582031],[-71.2354965209961,50.40800476074219],[-70.79322052001953,50.126007080078125],[-70.40377044677734,49.81462478637695],[-70.07124328613281,49.47776412963867],[-69.7986068725586,49.11955261230469],[-69.58790588378906,48.744293212890625],[-69.44027709960938,48.356407165527344],[-69.35606384277344,47.96034240722656],[-69.33483123779297,47.56048583984375],[-69.37549591064453,47.16098403930664],[-69.47628784179688,46.765380859375],[-69.6344985961914,46.376220703125],[-69.84571075439453,45.99488067626953],[-70.10250854492188,45.62214660644531],[-70.39327239990234,45.25952911376953],[-70.70230102539062,44.905792236328125],[-71.01240539550781,44.57057571411133],[-71.30923461914062,44.25836944580078],[-71.5848617553711,43.97053527832031],[-71.83782958984375,43.70463562011719],[-72.06971740722656,43.45640563964844],[-72.2810287475586,43.222572326660156],[-72.46977233886719,43.00151062011719],[-72.63369750976562,42.79119873046875],[-72.77348327636719,42.587364196777344],[-72.89325714111328,42.384525299072266],[-72.99748229980469,42.179622650146484],[-73.08656311035156,41.97492218017578],[-73.15492248535156,41.77761459350586],[-73.19268798828125,41.596229553222656],[-73.19013977050781,41.436363220214844],[-73.1424560546875,41.29823303222656],[-73.05244445800781,41.177330017089844],[-72.92958068847656,41.0672721862793],[-72.7862548828125,40.96245193481445],[-72.63365936279297,40.85896682739258],[-72.47980499267578,40.7542610168457],[-72.32976531982422,40.646881103515625],[-72.18647766113281,40.53668212890625],[-72.05089569091797,40.42478561401367],[-71.92185974121094,40.31254577636719]";
	// String sandy2 =
	// "[-73.76287841796875,40.44620132446289],[-73.65132141113281,40.36669921875],[-73.53974914550781,40.2864875793457],[-73.42961120605469,40.20661926269531],[-73.3212890625,40.127784729003906],[-73.21495056152344,40.049922943115234],[-73.11102294921875,39.972869873046875],[-73.00981903076172,39.89698028564453],[-72.91077423095703,39.822784423828125],[-72.8123779296875,39.750038146972656],[-72.71314239501953,39.67752456665039],[-72.61268615722656,39.603912353515625],[-72.51191711425781,39.52897644042969],[-72.41207885742188,39.45378494262695],[-72.31383514404297,39.379676818847656],[-72.21707153320312,39.30706787109375],[-72.12152099609375,39.23530960083008],[-72.02738952636719,39.163631439208984],[-71.93518829345703,39.092185974121094],[-71.84516906738281,39.02202606201172],[-71.75691223144531,38.953975677490234],[-71.66966247558594,38.88770294189453],[-71.5831298828125,38.82191467285156],[-71.49786376953125,38.75557327270508],[-71.41476440429688,38.68893051147461],[-71.33401489257812,38.623329162597656],[-71.25462341308594,38.55992126464844],[-71.17505645751953,38.498416900634766],[-71.09456634521484,38.43690872192383],[-71.01414489746094,38.3727912902832],[-70.93632507324219,38.303977966308594],[-70.86419677734375,38.22953796386719],[-70.80035400390625,38.14967727661133],[-70.74629211425781,38.065425872802734],[-70.70217895507812,37.978389739990234],[-70.66681671142578,37.89047622680664],[-70.63782501220703,37.80337142944336],[-70.61227416992188,37.717918395996094],[-70.58769989013672,37.63374710083008],[-70.56291961669922,37.54967498779297],[-70.53797912597656,37.46466064453125],[-70.5134048461914,37.378665924072266],[-70.48944854736328,37.292747497558594],[-70.46592712402344,37.208251953125],[-70.44276428222656,37.125946044921875],[-70.42040252685547,37.04584884643555],[-70.39952850341797,36.96780014038086],[-70.38036346435547,36.89202880859375],[-70.3621597290039,36.81893539428711],[-70.34358215332031,36.748374938964844],[-70.32373046875,36.67922592163086],[-70.30284118652344,36.609840393066406],[-70.2821044921875,36.53910827636719],[-70.26256561279297,36.46708297729492],[-70.24424743652344,36.3947639465332],[-70.22606658935547,36.32321548461914],[-70.2068862915039,36.25284957885742],[-70.18659210205078,36.183349609375],[-70.16636657714844,36.114280700683594],[-70.14790344238281,36.04575729370117],[-70.1320571899414,35.97865295410156],[-70.11813354492188,35.914085388183594],[-70.10416412353516,35.85249328613281],[-70.0882568359375,35.79311752319336],[-70.0698013305664,35.73422622680664],[-70.04987335205078,35.67403793334961],[-70.03044128417969,35.61162567138672],[-70.01301574707031,35.547237396240234],[-69.99767303466797,35.48208999633789],[-69.98316955566406,35.41773986816406],[-69.96780395507812,35.35535430908203],[-69.95068359375,35.295166015625],[-69.93234252929688,35.23643493652344],[-69.91463470458984,35.17795944213867],[-69.89997100830078,35.11879348754883],[-69.89049530029297,35.05864715576172],[-69.88765716552734,34.997825622558594],[-69.89215850830078,34.936973571777344],[-69.90409088134766,34.876869201660156],[-69.92301177978516,34.818355560302734],[-69.9478988647461,34.762306213378906],[-69.97718811035156,34.70951843261719],[-70.00900268554688,34.660369873046875],[-70.04174041748047,34.6146240234375],[-70.074462890625,34.57139587402344],[-70.10692596435547,34.529624938964844],[-70.1391830444336,34.48853302001953],[-70.17119598388672,34.44789505004883],[-70.20274353027344,34.4079475402832],[-70.23348999023438,34.369140625],[-70.26309204101562,34.33190155029297],[-70.291259765625,34.296451568603516],[-70.31797790527344,34.26264190673828],[-70.34362030029297,34.230010986328125],[-70.36874389648438,34.19806671142578],[-70.3936767578125,34.16659927368164],[-70.41824340820312,34.13571548461914],[-70.44200134277344,34.105621337890625],[-70.46480560302734,34.076351165771484],[-70.48695373535156,34.04776382446289],[-70.50895690917969,34.01972961425781],[-70.53092956542969,33.992286682128906],[-70.55242919921875,33.965641021728516],[-70.57279968261719,33.93996047973633],[-70.59174346923828,33.91527557373047],[-70.6097183227539,33.891502380371094],[-70.62773132324219,33.86859130859375],[-70.64688110351562,33.84667205810547],[-70.66791534423828,33.8260383605957],[-70.69116973876953,33.80706024169922],[-70.71660614013672,33.790077209472656],[-70.74402618408203,33.77534484863281],[-70.77313995361328,33.7630615234375],[-70.80362701416016,33.75336456298828],[-70.83516693115234,33.746360778808594],[-70.8674087524414,33.74212646484375],[-70.9000015258789,33.7407112121582],[-70.93258666992188,33.74212646484375],[-70.96483612060547,33.746360778808594],[-70.99636840820312,33.75336456298828],[-71.02686309814453,33.7630615234375],[-71.05596923828125,33.775352478027344],[-71.08338928222656,33.790096282958984],[-71.10881042480469,33.80713653564453],[-71.1319580078125,33.82628631591797],[-71.152587890625,33.84733581542969],[-71.17045593261719,33.87006378173828],[-71.18538665771484,33.89421081542969],[-71.197265625,33.91952133178711],[-71.20611572265625,33.94573211669922],[-71.21220397949219,33.972618103027344],[-71.21617126464844,34.00004577636719],[-71.2189712524414,34.028038024902344],[-71.22164916992188,34.05679702758789],[-71.22492980957031,34.08662796020508],[-71.22897338867188,34.117828369140625],[-71.23342895507812,34.15058517456055],[-71.23786163330078,34.18499755859375],[-71.24214172363281,34.22111511230469],[-71.2464599609375,34.259010314941406],[-71.2510757446289,34.29878234863281],[-71.25605010986328,34.34052658081055],[-71.26126098632812,34.384246826171875],[-71.26655578613281,34.42976760864258],[-71.27188110351562,34.47667694091797],[-71.27720642089844,34.524444580078125],[-71.2825927734375,34.5727653503418],[-71.28825378417969,34.621849060058594],[-71.29473114013672,34.672523498535156],[-71.30300903320312,34.72587585449219],[-71.3145751953125,34.78269577026367],[-71.3311996459961,34.842899322509766],[-71.35430908203125,34.90545654296875],[-71.38412475585938,34.968833923339844],[-71.41922760009766,35.03176498413086],[-71.45693969726562,35.09377670288086],[-71.4945068359375,35.15507507324219],[-71.5303726196289,35.21601867675781],[-71.56478881835938,35.2767333984375],[-71.59939575195312,35.337158203125],[-71.63592529296875,35.39744567871094],[-71.6750717163086,35.45817184448242],[-71.71612548828125,35.520206451416016],[-71.75779724121094,35.58431625366211],[-71.7993392944336,35.65082550048828],[-71.84114837646484,35.71951675415039],[-71.88417053222656,35.78976821899414],[-71.92880249023438,35.860897064208984],[-71.97433471679688,35.932376861572266],[-72.01945495605469,36.003910064697266],[-72.06338500976562,36.075286865234375],[-72.10655975341797,36.1463508605957],[-72.15022277832031,36.21710968017578],[-72.19535064697266,36.28792953491211],[-72.24191284179688,36.359474182128906],[-72.28913116455078,36.43234634399414],[-72.33642578125,36.50673294067383],[-72.3840560913086,36.58238983154297],[-72.43292236328125,36.658935546875],[-72.4838638305664,36.73600769042969],[-72.53758239746094,36.813114166259766],[-72.59526062011719,36.88920211791992],[-72.65916442871094,36.96258544921875],[-72.73209381103516,37.031558990478516],[-72.81587982177734,37.095359802246094],[-72.91015625,37.154754638671875],[-73.01263427734375,37.211585998535156],[-73.12057495117188,37.267662048339844],[-73.23216247558594,37.323848724365234],[-73.34677124023438,37.38016128540039],[-73.46420288085938,37.436500549316406],[-73.58421325683594,37.49321746826172],[-73.70651245117188,37.55095291137695],[-73.83106231689453,37.610076904296875],[-73.95790100097656,37.67035675048828],[-74.08666229248047,37.73127365112305],[-74.21641540527344,37.79240798950195],[-74.34622955322266,37.853599548339844],[-74.47583770751953,37.914737701416016],[-74.60569763183594,37.975643157958984],[-74.73636627197266,38.03619384765625],[-74.86796569824219,38.09627151489258],[-75.00039672851562,38.155357360839844],[-75.13423156738281,38.21216583251953],[-75.27110290527344,38.264892578125],[-75.41321563720703,38.3121452331543],[-75.56210327148438,38.353759765625],[-75.71782684326172,38.390804290771484],[-75.87908935546875,38.42491912841797],[-76.04429626464844,38.457542419433594],[-76.21251678466797,38.489654541015625],[-76.38407897949219,38.52193069458008],[-76.56024169921875,38.55508041381836],[-76.74223327636719,38.59014129638672],[-76.93013763427734,38.62863540649414],[-77.12228393554688,38.67262649536133],[-77.31549072265625,38.72451400756836],[-77.50594329833984,38.78662872314453],[-77.69000244140625,38.86075210571289],[-77.86466979980469,38.94778060913086],[-78.02757263183594,39.04773712158203],[-78.17691040039062,39.15994644165039],[-78.31151580810547,39.28329849243164],[-78.43120574951172,39.416412353515625],[-78.53720092773438,39.55783462524414],[-78.63230895996094,39.70634460449219],[-78.72050476074219,39.861202239990234],[-78.80587768554688,40.022186279296875],[-78.89157104492188,40.18927001953125],[-78.97925567626953,40.3620719909668],[-79.06925201416016,40.53957748413086],[-79.16114807128906,40.72032928466797],[-79.2543716430664,40.902992248535156],[-79.34856414794922,41.08696365356445],[-79.44351959228516,41.272796630859375],[-79.53877258300781,41.46235656738281],[-79.63282012939453,41.658477783203125],[-79.72233581542969,41.863922119140625],[-79.80204772949219,42.079994201660156],[-79.86587524414062,42.30576705932617],[-79.90912628173828,42.538448333740234],[-79.93034362792969,42.77482604980469],[-79.93173217773438,43.01289749145508],[-79.91793823242188,43.25279235839844],[-79.89409637451172,43.49650955200195],[-79.86419677734375,43.746551513671875],[-79.83041381835938,44.0045051574707],[-79.79287719726562,44.27057647705078],[-79.7495346069336,44.54414367675781],[-79.69593811035156,44.824310302734375],[-79.62539672851562,45.10973358154297],[-79.53007507324219,45.397884368896484],[-79.4025650024414,45.68480682373047],[-79.23731231689453,45.96579360961914],[-79.0311279296875,46.23667526245117],[-78.78297424316406,46.49498748779297],[-78.4936752319336,46.740577697753906],[-78.16593170166016,46.975440979003906],[-77.80439758300781,47.20295715332031],[-77.41477966308594,47.4268913269043],[-77.00189208984375,47.650691986083984],[-76.56791687011719,47.87701416015625],[-76.11238861083984,48.106990814208984],[-75.63398742675781,48.33905792236328],[-75.13257598876953,48.56808853149414],[-74.60987091064453,48.78579330444336],[-74.06927490234375,48.98252868652344],[-73.51571655273438,49.14958953857422],[-72.95530700683594,49.28078079223633],[-72.39379119873047,49.372657775878906],[-71.83383178710938,49.42386245727539],[-71.27396392822266,49.434085845947266],[-70.7110595703125,49.40326690673828],[-70.14488983154297,49.33129119873047],[-69.58094024658203,49.21815490722656],[-69.02944946289062,49.064353942871094],[-68.50206756591797,48.87116241455078],[-68.00908660888672,48.640655517578125],[-67.55841064453125,48.37562561035156],[-67.15592956542969,48.079383850097656],[-66.80608367919922,47.75563049316406],[-66.51224517822266,47.408348083496094],[-66.27689361572266,47.041725158691406],[-66.10165405273438,46.66011428833008],[-65.98731994628906,46.26792526245117],[-65.93396759033203,45.86962890625],[-65.94094848632812,45.46963882446289],[-66.0069580078125,45.07232666015625],[-66.13016510009766,44.68193054199219],[-66.30818939208984,44.30253982543945],[-66.53821563720703,43.93806076049805],[-66.81704711914062,43.592185974121094],[-67.14114379882812,43.26835632324219],[-67.50668334960938,42.969749450683594],[-67.90960693359375,42.699256896972656],[-68.34558868408203,42.45945739746094],[-68.81005859375,42.25257873535156],[-69.29788970947266,42.080345153808594],[-69.80288696289062,41.94367218017578],[-70.31724548339844,41.84212112426758],[-70.83139038085938,41.773223876953125],[-71.33480834960938,41.732078552246094],[-71.817138671875,41.71144104003906],[-72.27870178222656,41.70192337036133],[-72.69950866699219,41.694156646728516],[-73.0687484741211,41.678138732910156],[-73.37715148925781,41.644744873046875],[-73.62142181396484,41.58735275268555],[-73.80640411376953,41.503665924072266],[-73.94255065917969,41.396507263183594],[-74.04046630859375,41.27296447753906],[-74.10652160644531,41.142250061035156],[-74.14189910888672,41.01336669921875],[-74.14497375488281,40.893211364746094],[-74.11502838134766,40.785499572753906],[-74.05488586425781,40.69038391113281],[-73.970947265625,40.605003356933594],[-73.87120056152344,40.52494430541992],[-73.76287841796875,40.44620132446289]";
	// String sandy3 =
	// "[-72.9032211303711,40.22221374511719],[-72.76725006103516,40.147911071777344],[-72.63432312011719,40.07475280761719],[-72.50457763671875,40.00273132324219],[-72.37806701660156,39.931983947753906],[-72.25431823730469,39.862274169921875],[-72.1324462890625,39.79222106933594],[-72.011962890625,39.71927261352539],[-71.893798828125,39.6407356262207],[-71.78038787841797,39.55506896972656],[-71.67463684082031,39.4626350402832],[-71.578369140625,39.3654670715332],[-71.49130249023438,39.26628494262695],[-71.4111328125,39.167266845703125],[-71.33482360839844,39.06929016113281],[-71.2602310180664,38.97221755981445],[-71.18692779541016,38.875877380371094],[-71.11560821533203,38.780845642089844],[-71.04667663574219,38.6881103515625],[-70.97949981689453,38.59800720214844],[-70.912841796875,38.509578704833984],[-70.84605407714844,38.42121124267578],[-70.77940368652344,38.331932067871094],[-70.71342468261719,38.24205017089844],[-70.64808654785156,38.15253448486328],[-70.58281707763672,38.063873291015625],[-70.51737976074219,37.97575378417969],[-70.45250701904297,37.887752532958984],[-70.38941955566406,37.800262451171875],[-70.32865142822266,37.714439392089844],[-70.2694091796875,37.631202697753906],[-70.210205078125,37.550167083740234],[-70.15015411376953,37.46971893310547],[-70.089599609375,37.38821029663086],[-70.02953338623047,37.30516815185547],[-69.97052001953125,37.22148895263672],[-69.91210174560547,37.13848114013672],[-69.85356903076172,37.05668258666992],[-69.79511260986328,36.97538375854492],[-69.73845672607422,36.893104553222656],[-69.68643188476562,36.808433532714844],[-69.64202880859375,36.720664978027344],[-69.60758209228516,36.629886627197266],[-69.5844955444336,36.53672790527344],[-69.57341003417969,36.44206237792969],[-69.57437133789062,36.346778869628906],[-69.58674621582031,36.25171661376953],[-69.60910034179688,36.15768814086914],[-69.63909149169922,36.065513610839844],[-69.67379760742188,35.97600555419922],[-69.71048736572266,35.889793395996094],[-69.747314453125,35.807254791259766],[-69.78337097167969,35.728538513183594],[-69.8182144165039,35.65360641479492],[-69.85150146484375,35.58203125],[-69.88313293457031,35.51274108886719],[-69.91364288330078,35.4442138671875],[-69.94404602050781,35.3752555847168],[-69.97505187988281,35.30565643310547],[-70.00653076171875,35.23601531982422],[-70.0376968383789,35.166847229003906],[-70.06804656982422,35.097938537597656],[-70.09791564941406,35.028526306152344],[-70.12811279296875,34.95812225341797],[-70.15904998779297,34.88703155517578],[-70.19025421142578,34.81619644165039],[-70.22087097167969,34.74656677246094],[-70.25049591064453,34.67863082885742],[-70.27946472167969,34.61250686645508],[-70.30831146240234,34.5483283996582],[-70.33692932128906,34.48637771606445],[-70.36450958251953 

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ZipFileStructureProvider类代码示例发布时间:2022-05-23
下一篇:
Java FunctionBuilder类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap