Welcome![Sign In][Sign Up]
Location:
Downloads SourceCode Windows Develop Other
Title: Base64 Download
  • Category:
  • Other systems
  • Tags:
  • File Size:
  • 2kb
  • Update:
  • 2018-04-06
  • Downloads:
  • 0 Times
  • Uploaded by:
  • 少郎
 Description: public static String encode(byte[] binaryData) { if (binaryData == null) { return null; } int lengthDataBits = binaryData.length * EIGHTBIT; if (lengthDataBits == 0) { return ""; } int fewerThan24bits = lengthDataBits % TWENTYFOURBITGROUP; int numberTriplets = lengthDataBits / TWENTYFOURBITGROUP; int numberQuartet = fewerThan24bits != 0 ? numberTriplets + 1 : numberTriplets; char encodedData[] = null; encodedData = new char[numberQuartet * 4]; byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0; int encodedIndex = 0; int dataIndex = 0; if (fDebug) { System.out.println("number of triplets = " + numberTriplets); }
 Downloaders recently: [More information of uploader 少郎]
 To Search:
File list (Check if you may need any files):
FilenameSizeDate
Base64.java 9624 2017-11-16

CodeBus www.codebus.net