Help for this page

Select Code to Download


  1. 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());
    
  2. or download this
    $base64 =base64_encode(urlencode($baseStr));
    
  3. or download this
    #======= Encode XML base64 ================================
    use MIME::Base64 ;
    ...
    $content = $ua->request($req)->as_string;
    # print "Content-type: text/html\n\n";
    print $content;