Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. new java.io.File(outputDirectory).mkdirs
  2. val outConf = Paths.get(outputDirectory, "other.conf")
  3. Files.write(outConf, config.root().render(ConfigRenderOptions.concise()).getBytes)
  4.  
  5. "app" : {
  6. "message" : {
  7. "name" : "messanger",
  8. "lenght" : 100
  9. }
  10. "text" : {
  11. "font" : 10
  12. }
  13. }
  14.  
  15. app.message.name = "messanger"
  16. app.message.length = 100
  17. app.text.font = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement