•  
     
     
     
     
    Add Text and Timestamp on Gallery Photos Add Text and Timestamp on Gallery Photos
    Add Text and Timestamp on Gallery Photos
    Add text stamps to saved Gallery Photos as Date Timestamp, Signature, GPS & Logo
  •  
     
     
     
     
    Soft4Boost Screen Recorder Soft4Boost Screen Recorder
    Soft4Boost Screen Recorder
    Soft4Boost Screen Recorder is a simple to use utility which allows you to record all the operations you perform with the mouse and anything you see on your computer screen within the selected area.
  •  
     
     
     
     
    PhotoPad Photo Editor Free PhotoPad Photo Editor Free
    PhotoPad Photo Editor Free
    PhotoPad Free image editing software is a free photo editor for Windows. It allows you to edit and apply effects to photos and other images.
  •  
     
     
     
     
    Full Battery Charge Alarm and Theft Security Alert Full Battery Charge Alarm and Theft Security Alert
    Full Battery Charge Alarm and Theft Security Alert
    Get an Alarm Ringtone as Alert for Free when your Battery Indicator is "FULLY CHARGED" and "CRITICALLY LOW" to protect your Smartphone from problems
  •  
     
     
     
     
    DrawPad Plus DrawPad Plus
    DrawPad Plus
    DrawPad Plus is an easy-to-use image composition and manipulation program, an essential tool to create images, drawings, paintings, logos, and ads. DrawPad is ideal for all your graphic design projects.
  •  
     
     
     
     
    Soft4Boost Image Converter Soft4Boost Image Converter
    Soft4Boost Image Converter
    Convert and save tons of images between such formats as JPEG, PDF, RAW, GIF, etc. Use Batch mode to speed up the conversion process. Apply correction settings to improve images quality. Select among various effects and watermark converted images.
  •  
     
     
     
     
    Find the Difference Game 3 - ABCs Find the Difference Game 3 - ABCs
    Find the Difference Game 3 - ABCs
    Find 12 differences between pairs of pictures. Published by Dataware.
  •  
     
     
     
     
    Find the Difference Game 2: Dinosaurs Find the Difference Game 2: Dinosaurs
    Find the Difference Game 2: Dinosaurs
    Find 12 differences between pairs of pictures. Published by Dataware.
  •  
     
     
     
     
    Coloring Book 16: Silly Scenes Coloring Book 16: Silly Scenes
    Coloring Book 16: Silly Scenes
    Coloring book software filled with 50 pages of scenes filled with all kinds of silliness! These funny and lighthearted scenes will keep a smile on your child's face for hours. Published by Dataware.
  •  
     
     
     
     
    Video Stamper: Add text and timestamp to video Video Stamper: Add text and timestamp to video
    Video Stamper: Add text and timestamp to video
    ◇‘Video Stamper’ is an only application that lets you watermark three main tags to your pre-captured video 1) Date and Timestamp 2) GPS geotag (Location) 3) Signature Stamp (Add text on video)

 

Base64 1.9

 

 
Program Info
 

License:
 
Last Update: 2015-11-27
 
Release Status: Minor Update
 
Size: 0.21 MB
 
Price: $0.00  Buy
 
Downloads: 9
 
Publisher: Canadian Mind Products
 
OS Support: Win2000, WinXP, Win7 x32, Win7 x64, Windows 8, WinServer, WinVista, WinVista x64, Unix, Linux, Mac OS X, Java
 
Category: Windows/Web Development/Java & JavaScript
 
Rating
0


 



Base64

 
Publisher's Description
 
 
B

ase64 is a freeware way of encoding 8-bit characters using
only ASCII printable characters similar to UUENCODE.
UUENCODE embeds a filename where BASE64 does not. You will
see BASE64 used in encoding digital certificates, in
encoding user:password string in an Authorization: header
for HTTP. The spec is described in RFC 2045.

Don't confuse Base64 with x-www-form-urlencoded which
is handled by java.net.URLEncoder.encode/decode or
Base64u.

Base64 armouring uses only the characters A-Z a-z 0-9 +/=.
This makes it suitable for encoding binary data as SQL
strings, that will work no matter what the encoding.
Unfortunately + / and = all have special meaning in URLs.

Base64u gets around this problem. It is a variant on Base64
that uses - _ and * in preference to + / and =, so that it
can be used in URLEncoded contexts with or without
URLEncoding.

Use base64 like this:

// Base64 armouring
import com.mindprod.base64.Base64;
...
// sample byte array to encode
byte[] toSend = { (byte)0xfc, (byte)0x0f, (byte)0xc0};

// create encoder object
Base64 base64 = new Base64();
base64.setLineLength( 72 ); // default

// encoding a byte[]
String send = base64.encoder( toSend );

// decoding a byte[]
byte[] reconstituted = base64.decoder( sent );

use Base64u the same way:

// Base64u armouring
import com.mindprod.base64.Base64u;
...
// sample byte array to encode
byte[] toSend = { (byte)0xfc, (byte)0x0f, (byte)0xc0};

// create encoder object
Base64u base64u = new Base64u();
base64u.setLineLength( 72 ); // default

// encoding a byte[]
String send = base64u.encoder( toSend );

// decoding a byte[]
byte[] reconstituted = base64u.decoder( sent );

For an example that starts and ends with a String, see
Example.java

to run:
java.exe com.mindprod.base64.Example

Requirements

Java 1.7+

Changes: 1.9

add icon and pad file

Languages supported

English