org.ergoplatform.appkit.FileUtil.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ergo-appkit_2.11 Show documentation
Show all versions of ergo-appkit_2.11 Show documentation
A Library for Polyglot Development of Ergo Applications
The newest version!
package org.ergoplatform.appkit
import org.apache.commons.io.FileUtils
import java.io.File
import java.nio.charset.Charset
object FileUtil {
def read(file: File): String = FileUtils.readFileToString(file, Charset.defaultCharset())
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy