在java中如何读取properties文件?

在java中如何读取properties文件?,第1张

使用java.util.Properties\x0d\x0a\x0d\x0a1、创建一个Properties对象。\x0d\x0a2、使用对象的load方法加载你的property文件。\x0d\x0a3、使用getProperty方法取值。\x0d\x0a例子:\x0d\x0apackage com.bill.test\x0d\x0a\x0d\x0aimport java.io.FileInputStream\x0d\x0aimport java.util.Properties\x0d\x0a\x0d\x0apublic class Test {\x0d\x0apublic static void main(String[] args) throws Exception{\x0d\x0aProperties property = new Properties()\x0d\x0aproperty.load(new FileInputStream("你的文件位置"))\x0d\x0aString value = property.getProperty("你的属性的key")\x0d\x0a//TODO 使用value...\x0d\x0a}\x0d\x0a}

用C语言读取properties配置文件的方法:

1、找到配置路径下的properties文件

2、按行读取文件内容

具体实现代码如下:

//定义读入的行数组,1024行

char line[1024]

//存放配置项数组setting

int setting[N],i = 0

//开始循环读入

while(fgets(fp,line,1024) != NULL)

{

//读入配置的值给line变量

fscanf(line,"setting%*d = %d",&setting[i++])

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8102564.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存