Forum Discussion
omatzura
18 years agoSuper Contributor
Hi!
I think groovy has built-in decoding support, so if you have the base64 value you should be able to do something like
def value = ..get base64 value as string..
log.info( new String( value.decodeBase64()) )
does that help?
regards,
/Ole
eviware.com
I think groovy has built-in decoding support, so if you have the base64 value you should be able to do something like
def value = ..get base64 value as string..
log.info( new String( value.decodeBase64()) )
does that help?
regards,
/Ole
eviware.com