java的properties文件怎么创建

一、创建properties文件

方法一、eclipse 方法: 打开file--new--other 选择general--file--next 在file name后输入:文件名.properties,finish即可。

方法二、新建普通的文本文件,然后修改后缀为properties即可创建。

方法三、如果是编程实现的话,使用输出流,输出保存时后缀文件是properties即可。

二、properties 文件

1、properties 文件就是文本文件,创建一个文本文件再改名就好了。

2、 properties文件格式就是key=value形的文件,#为注释行。比如:

#下面是个例子

userid = userID

password = user password

dburl = jdbc:db2://111.111.111:3333/sampledb

3、properties文件用任意文本编辑器编辑就好。eclipse也可以。

你可能感兴趣的:(JavaWeb,eclipse,java,ide)