本文整理了Java中org.geotools.util.factory.GeoTools.init()
方法的一些代码示例,展示了GeoTools.init()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GeoTools.init()
方法的具体详情如下:
包路径:org.geotools.util.factory.GeoTools
类名称: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:
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) {
内容来源于网络,如有侵权,请联系作者删除!