calling java base64 constructor with arguments

3 visualizaciones (últimos 30 días)
Markus Leuthold
Markus Leuthold el 21 de Oct. de 2015
Comentada: Markus Leuthold el 22 de Oct. de 2015
I want to convert a character array into a Base64 stream using java.
The class
org.apache.commons.codec.binary.Base64
does a good job for this purpose. However, I need to provide parameters for the constructor. None of the following works for changing the line length
org.apache.commons.codec.binary.Base64(java.lang.Integer(80))
org.apache.commons.codec.binary.Base64(80)
javaObject('org.apache.commons.codec.binary.Base64',java.lang.Integer(80))
javaObject('org.apache.commons.codec.binary.Base64',80)
All of them return
No constructor 'org.apache.commons.codec.binary.Base64' with matching signature found.
Any ideas?

Respuesta aceptada

Guillaume
Guillaume el 21 de Oct. de 2015
If you look at the list of methods available for that java class with
methodsview org.apache.commons.codec.binary.Base64
%or
methods org.apache.commons.codec.binary.Base64 -full
you'll see that only the constructor with no input is listed and a fair number of methods are missing. The additional constructors and all those mising methods are all listed as having been introduced in version 1.4 of the library (look in the details of the documentation of each method).
Therefore, it's safe to assume that matlab ships with a version earlier than 1.4. You're out of luck with this one. I'm not sure you can safely replace the jvm that ships with matlab but you can always import a different library. I'm sure that there's more than one that does Base64 decoding.
Alternatively, if you're on windows you can use the convert class of .Net to do the same.

Más respuestas (0)

Categorías

Más información sobre Java Package Integration en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by