How to read Special Character # from Properties file in Java
password=Admin123#
when i read read password from properties file i am getting
password=Admin123
How to read Special Character # from Properties file in Java
password=Admin123#
when i read read password from properties file i am getting
password=Admin123
You need to escape special characters: How to escape the equals sign in properties files see answer 4 exactly for your case: https://stackoverflow.com/a/33808156/3453727