|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在ruby里才是一切皆对象。当然我不并不是很了解ruby,但是ruby确实是将语法简化得很好。ReadingandWritingaPropertiesFile
//Readpropertiesfile.
Propertiesproperties=newProperties();
try{
properties.load(newFileInputStream(
"infilename"));
}catch(IOExceptione){
}
//Writepropertiesfile.
try{
properties.store(newFileOutputStream(
"outfilename"),null);
}catch(IOExceptione){
}
Hereisanexampleofthecontentsofapropertiesfile:
#acomment
!acomment
a=astring
b=astringwithescapesequences
"(space)u0123
c=astringwithacontinuationline
continationline
d.e.f=anotherstring
对于一个大型项目,如果用java来作,可能需要9个月,并且可能需要翻阅10本以上的书,但如果用ruby来作,3个月,3本书就足够了,而.net也不过3,4本书足以,这就是区别。 |
|