Advertisement
Guest User

Untitled

a guest
May 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. fun readContent(fileNameWithExt: String): String? {
  2. return try {
  3. val classLoader = javaClass.classLoader
  4. val resource = classLoader.getResource(fileNameWithExt)
  5. val file = File(resource.file)
  6. file.readText()
  7. } catch (e: Exception) {
  8. null
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement