1. package com.geoserver;
  2. import java.io.IOException;
  3. import java.util.ArrayList;
  4. import java.util.HashMap;
  5. import java.util.Map;
  6. import org.geotools.data.DataStore;
  7. import org.geotools.data.DataStoreFinder;
  8. import org.geotools.data.simple.SimpleFeatureCollection;
  9. import org.geotools.data.simple.SimpleFeatureSource;
  10. import org.geotools.feature.FeatureIterator;
  11. import org.geotools.filter.text.cql2.CQL;
  12. import org.geotools.filter.text.cql2.CQLException;
  13. import org.geotools.geometry.jts.ReferencedEnvelope;
  14. import org.opengis.feature.simple.SimpleFeature;
  15. import org.opengis.filter.Filter;
  16. /**
  17. * 采用geotools中公共查询语言
  18. * 过滤条件如下
  19. *
  20. * 例如:
  21. *    PERSONS > 15000000
  22. *    PERSONS BETWEEN 1000000 AND 3000000
  23. *    STATE_NAME LIKE 'N%'
  24. *    STATE_NAME = 'California'
  25. *    MALE > FEMALE
  26. *    UNEMPLOY / (EMPLOYED + UNEMPLOY) > 0.07
  27. *     IN ('states.1', 'states.12'):
  28. *   STATE_NAME IN ('New York', 'California', 'Montana', 'Texas'):
  29. *  带函数的使用:
  30. *     strToLowerCase(STATE_NAME) like ‘%m%’
  31. *
  32. *
  33. *
  34. * @Title:
  35. * @Description: 实现TODO
  36. * @Copyright:Copyright (c) 2011
  37. * @Company:
  38. * @Date:2012-9-10
  39. * @author  longgangbai
  40. * @version 1.0
  41. */
  42. public class GeoServerCQLECQL {
  43. /**
  44. *
  45. * @param filterStr
  46. * @param layerName
  47. * @return
  48. * @throws IOException
  49. */
  50. public static ArrayList<SimpleFeature> queryMethod(String filterStr,String layerName) throws IOException {
  51. String getCapabilities = "http://localhost:8080/geoserver/wfs?REQUEST=GetCapabilities";
  52. Map<String,String> connectionParameters = new HashMap<String,String>();
  53. connectionParameters.put("WFSDataStoreFactory:GET_CAPABILITIES_URL", getCapabilities );
  54. // Step 2 - connection
  55. DataStore data = DataStoreFinder.getDataStore( connectionParameters );
  56. SimpleFeatureSource featureSource =data.getFeatureSource(layerName);
  57. ArrayList<SimpleFeature> featureList = new ArrayList<SimpleFeature>();
  58. if(featureSource==null)
  59. return featureList;
  60. try {
  61. Filter  filter = CQL.toFilter(filterStr); // filterStr形式 如  name='武汉大学' or code like 'tt123%'
  62. SimpleFeatureCollection result = featureSource.getFeatures(filter);
  63. ReferencedEnvelope bounds = new ReferencedEnvelope();
  64. FeatureIterator<SimpleFeature> itertor = result.features();
  65. while (itertor.hasNext()) {
  66. SimpleFeature feature = itertor.next();
  67. bounds.include( feature.getBounds() );
  68. featureList.add(feature);
  69. }
  70. System.out.println( "Calculated Bounds:"+ bounds );
  71. itertor.close();
  72. result.close( itertor );
  73. return featureList;
  74. } catch (CQLException e) {
  75. // TODO Auto-generated catch block
  76. e.printStackTrace();
  77. } catch (IOException e) {
  78. // TODO Auto-generated catch block
  79. e.printStackTrace();
  80. }finally {
  81. }
  82. return null;
  83. }
  84. public static void main(String[] args) throws IOException {
  85. ArrayList<SimpleFeature> list=queryMethod("STATE_NAME='Arizona'","topp:states");
  86. System.out.println("list="+list.toString());
  87. }
  88. }

geoserver中除了使用kml来查询数据以外,还可以使用csql或ecsql的更多相关文章

  1. 关于EsayUI中datagrid重复提交后台查询数据的问题

    直接上代码: <table id="XXXX" style="width:100%;height:100%;" class="easyui-da ...

  2. Lucene 06 - 使用Lucene的Query API查询数据

    目录 1 Query对象的创建(方式一): 使用子类对象 1.1 常用的Query子类对象 1.2 常用的Query子类对象使用 1.2.1 使用TermQuery 1.2.2 使用NumericRa ...

  3. [原]在GeoServer中为OpenStreetMap数据设置OSM样式

    转载请注明作者think8848和出处(http://think8848.cnblogs.com) 在前面几篇文章中,我们讲到了部署Postgresql,部署PostGis,部署GeoServer以及 ...

  4. Python3操作MySQL,查询数据并保存到文件中

    我们在测试过程中,可能需要到数据库中拉去一些数据,为从测试准备.比如最近在做接口性能测试的时候,就需要很多数据来支撑,所以就需要的数据库去查询数据,下面就是python3 查询 mysql 并且保存到 ...

  5. MySQL查询数据表中数据记录(包括多表查询)

    MySQL查询数据表中数据记录(包括多表查询) 在MySQL中创建数据库的目的是为了使用其中的数据. 使用select查询语句可以从数据库中把数据查询出来. select语句的语法格式如下: sele ...

  6. Sql Server 存储过程中查询数据无法使用 Union(All)

    原文:Sql Server 存储过程中查询数据无法使用 Union(All) 微软Sql Server数据库中,书写存储过程时,关于查询数据,无法使用Union(All)关联多个查询. 1.先看一段正 ...

  7. 关于SpringMVC中如何把查询数据全转成String类型

    之前,本想与客户商量做几张固定的报表予使用,结果发现客户每个月都需要各种各样的报表,所以我们做了个窗口用于直接执行SQL语句:数据量一开始并不是很大查询出来的数据较少(约1-6W左右),所以刚开始几个 ...

  8. 从DataTable中查询数据

    /// <summary> /// 从DataTable中查询数据 /// </summary> /// <param name="tb">待处 ...

  9. 2019-2-14SQLserver中拼音查询数据

    SQLserver中获取文字的全拼音: CREATE function [dbo].[f_GetPinyin](@words nvarchar()) returns varchar() as begi ...

随机推荐

  1. CentOS重新加载网卡报错 Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/

    重新加载网卡时出现的错误如下: 1 [root@vdb1 dev]# service network restart 2 Shutting down interface eth0: Device st ...

  2. BOM和DOM(cs)

    前戏 到目前为止,我们已经学过了JavaScript的一些简单的语法.但是这些简单的语法,并没有和浏览器有任何交互. 也就是我们还不能制作一些我们经常看到的网页的一些交互,我们需要继续学习BOM和DO ...

  3. CSS3基础

    内容: 1.圆角 border-radius 2.阴影 text-shadow.box-shadow 3.渐变 linear.radial 4.rgba rgb+alpha opacity 5.tra ...

  4. linux操作系统1 Linux入门

    知识内容: 1.操作系统简介 2.Linux操作系统简介 3.Linux安装 4.Linux各大发行版本介绍 一.操作系统介绍 1.为什么需要操作系统 现代的计算机系统由处理器,主存,硬盘,键盘,鼠标 ...

  5. THINKPHP3.2.3增加阿里云短信接口思路整理

    https://help.aliyun.com/document_detail/55359.html?spm=5176.product44282.4.7.O4lc1n 阿里云短信服务地址,感冒的下载看 ...

  6. 13.mysql基本查询

    1. 给表起个别名:但是,前面的也是需要进行修改的,否则会报错的: select * from s.name from students as s; 2. 为字段起别名 select s,name a ...

  7. 1_Utilities__bandwidthTest

    使用三种模式(QUICK_MODE,RANGE_MODE,SHMOO_MODE),测试三种拷贝情况下的显存带宽(HostToDevice,DeviceToHost,DeviceToDevice) ▶ ...

  8. hive整合hbase

    Hive整合HBase后的好处: 通过Hive把数据加载到HBase中,数据源可以是文件也可以是Hive中的表. 通过整合,让HBase支持JOIN.GROUP等SQL查询语法. 通过整合,不仅可完成 ...

  9. eclipse中添加aptana插件(html.css.js自动提示)

    一.关于aptana aptana是一款很不错的插件,本人主要用于安装此类插件,在eclipse中用于编辑javascript代码,html代码,和css代码的,因为其有自动纠错功能,当然安装后的问题 ...

  10. Maven可执行jar包

    参考文章: Maven生成可以直接运行的jar包的多种方式(http://blog.csdn.net/xiao__gui/article/details/47341385) 一般,我们通过 > ...