org.geotools.util.factory.GeoTools.init()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(253)

本文整理了Java中org.geotools.util.factory.GeoTools.init()方法的一些代码示例,展示了GeoTools.init()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GeoTools.init()方法的具体详情如下:
包路径:org.geotools.util.factory.GeoTools
类名称:GeoTools
方法名:init

GeoTools.init介绍

[英]Initializes GeoTools for use. This convenience method performs various tasks (more may be added in the future), including setting up the java.util.logging in one of the following states:

  • If the Commons-logging framework is available, then every logging message in the org.geotoolsnamespace sent to the Java java.util.logging.Logger are redirected to Commons-logging.
  • Otherwise if the Log4J framework is available, then every logging message in the org.geotools namespace sent to the Java java.util.logging.Logger are redirected to Log4J.
  • Otherwise, the Java logging java.util.logging.Formatter for console output is replaced by a org.geotools.util.logging.MonolineFormatter.

Invoking this method is not required fpr the GeoTools library to function. It is just a convenience method for overwriting select Java and GeoTools default settings. Supplying these defaults is not desirable in all settings, such as writing test cases.
[中]初始化GeoTools以供使用。这个方便的方法执行各种任务(将来可能会添加更多),包括设置java。util。登录到以下状态之一:
*如果Commons-logging框架可用,则组织中的每个日志消息都将可用。geotoolsnamespace发送到Java。util。登录中。记录器被重定向到Commons日志记录。
*否则,如果Log4J框架可用,则组织中的每一条日志消息都可用。geotools命名空间已发送到Java。util。登录中。记录器被重定向到Log4J。
*否则,Java日志记录程序将调用Java。util。登录中。控制台输出的格式化程序由组织替换。地理工具。util。登录中。单行格式化程序。
调用此方法不是GeoTools库运行所必需的。这只是覆盖select Java和GeoTools默认设置的一种方便方法。并非在所有设置中都需要提供这些默认值,例如编写测试用例。

代码示例

代码示例来源:origin: geoserver/geoserver

GeoTools.init((Hints) null);

代码示例来源:origin: geotools/geotools

init();
if (hints != null) {

相关文章