org.geotools.feature.type.DateUtil.decodeChunk()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(105)

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

DateUtil.decodeChunk介绍

[英]Decode a chunk of data from base64 encoding. The length of a chunk is always 4 characters in the base64 representation, but may be 1, 2, or 3 bytes of data, as determined by whether there are any pad characters at the end of the base64 representation
[中]从base64编码中解码数据块。在base64表示中,数据块的长度始终为4个字符,但可以是1、2或3字节的数据,具体取决于base64表示末尾是否有填充字符

代码示例

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

fill += decodeChunk(i, chrs, fill, byts);

代码示例来源:origin: org.geotools/gt2-main

fill += decodeChunk(i, chrs, fill, byts);

代码示例来源:origin: org.geotools/gt-main

fill += decodeChunk(i, chrs, fill, byts);

相关文章