All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beangle.commons.codec.binary.Base64.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2005, The Beangle Software.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 */

package org.beangle.commons.codec.binary

import org.beangle.commons.codec.{Decoder, Encoder}

import java.io.{File, FileOutputStream, IOException}

object Base64 {
  def encode(data: Array[Byte]): String = Base64Encoder.encode(data)

  def decode(data: String): Array[Byte] = Base64Decoder.decode(data)

  def dump(data: String, file: File): Unit = {
    var os: FileOutputStream = null
    try {
      os = new FileOutputStream(file)
      os.write(decode(data))
    } catch {
      case e: IOException => e.printStackTrace()
    } finally if (os != null) try {
      os.flush()
      os.close()
    } catch {
      case e: IOException =>
    }
  }
}

object Base64Encoder extends Encoder[Array[Byte], String] {

  def encode(data: Array[Byte]): String = {
    new String(java.util.Base64.getEncoder.encode(data))
  }
}

object Base64Decoder extends Decoder[String, Array[Byte]] {

  def decode(str: String): Array[Byte] = {
    java.util.Base64.getDecoder.decode(str)
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy