how i can encode my data with personal encoding format like base64 encoding, i have a online android app and i going to make personal encoding format for send to / get from database, what am i do for make it ???
8/11/2017 4:42:00 AM
Mohammad Zarchi8 Answers
New AnswerEncoding in Java: import java.util.Base64; byte[] encodedBytes = Base64.getEncoder().encode("data_to_encode".getBytes()); Decoding in PHP: base64_decode("encoded_string");
Sololearn Inc.
535 Mission Street, Suite 1591Send us a message