- or download this
/String base64Xml = URLEncoder.encode(xml.toString(),"UTF-8");
sun.misc.BASE64Encoder encoder = new sun.misc.BASE64Encoder();
String base64 = encoder.encode(base64Xml.getBytes());
- or download this
$base64 =base64_encode(urlencode($baseStr));
- or download this
#======= Encode XML base64 ================================
use MIME::Base64 ;
...
$content = $ua->request($req)->as_string;
# print "Content-type: text/html\n\n";
print $content;