I am trying learn Play Framework. In the documentation, under section Serving files, when I try following example,
def terms = Action {
Ok.sendFile(
content = new java.io.File("README.txt"),
inline = false)
}
the downloaded filename is utf-8''README.txt, instead of README.txt.
Unable to understand WHY?
Configuration
- Java (1.8.0_131-b11)
- Scala (2.12.2)
- Play (2.6.0)
- SBT (0.13.15)