Search code examples
javapropertiescomments

Can we have multiline comments in a Java properties file?


In a Java .properties file we can do single line comments with #.

Is there any way by which we can do multi-line comments?


Solution

  • Unfortunately not! Java properties file only have single line # comments.