本文整理了Java中es.gob.afirma.core.misc.Base64.isBase64()
方法的一些代码示例,展示了Base64.isBase64()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Base64.isBase64()
方法的具体详情如下:
包路径:es.gob.afirma.core.misc.Base64
类名称:Base64
方法名:isBase64
[英]Comprueba si una cadena de texto es una cadena en base 64.
[中]在64号基地,所有的文字都被压缩了。
代码示例来源:origin: es.gob.afirma/afirma-core
if (!Base64.isBase64(identifierHash.getBytes())) {
throw new IllegalArgumentException("La huella digital de la politica debe estar en formato Base64"); //$NON-NLS-1$
代码示例来源:origin: es.gob.afirma/afirma-core
if (Base64.isBase64(dataSource.getBytes())) {
Logger.getLogger("es.gob.afirma").info("El contenido a obtener es Base64"); //$NON-NLS-1$ //$NON-NLS-2$
try {
代码示例来源:origin: es.gob.afirma/afirma-crypto-xmlsignature
if (Base64.isBase64(data) && (XMLConstants.BASE64_ENCODING.equals(encoding) || (encoding != null ? encoding : "").toLowerCase().equals("base64"))) { //$NON-NLS-1$ //$NON-NLS-2$
LOGGER.info("El documento se ha indicado como Base64, se insertara como tal en el XML"); //$NON-NLS-1$
内容来源于网络,如有侵权,请联系作者删除!