0

I am going to use a .properties file for a project I am working on. However, I am not able to find a way to do this, any help is appreciated.

Shanklen
  • 11
  • 4
  • 1
    Create a new file called `whatever.properties`. They're text files. What's the specific issue? – Dave Newton Jun 28 '22 at 23:57
  • Does this answer your question? [How to use Java property files?](https://stackoverflow.com/questions/1318347/how-to-use-java-property-files) – sorifiend Jun 28 '22 at 23:58
  • Just drag a file with the name you want into your project, or create a new text file within the IDE and give it the name you want. – sorifiend Jun 28 '22 at 23:59

1 Answers1

0

Right-click in the project panel to select New File

enter image description here

or click the New File icon behind the project bar

enter image description here

and create a file with a suffix of .properties.

enter image description here

JialeDu
  • 6,021
  • 2
  • 5
  • 24