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

com.sandinh.phputils.package.scala Maven / Gradle / Ivy

The newest version!
package com.sandinh

import java.nio.charset.Charset

package object phputils {

  private val DefaultCharset = Charset.forName("ISO-8859-1")

  def decode(encoded: String, charset: Charset): String = {
    try {
      new String(encoded.getBytes(charset), DefaultCharset)
    } catch {
      case e: UnsupportedOperationException => encoded
    }
  }

  def encode(decoded: String, charset: Charset): String = {
    try {
      new String(decoded.getBytes(DefaultCharset), charset)
    } catch {
      case e: UnsupportedOperationException => decoded
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy