JAVA基礎:使用Properties類帶來的好處(轉)
JAVA基礎:使用Properties類帶來的好處(轉)[@more@]許多開發者抱怨C++不能像Java那樣繫結Properties類。Java的Properties類內在包含一個檔案,該檔案用來讀寫Properties類中的屬性,可以寫成這樣形式:=(例如:ConnectToInternet=Use IE)。
使用Properties類的好處就是你可以很輕鬆的理解和修改它們。在本文的第一部分中,你將看到我們也可以在C++中使用Properties類。本文的第二部分將向你演示透過使用運算子>>和<
現在介紹C++ Properties檔案的結構。該檔案的每一行可以是下面三種情況中的某一種:
空行(認為它是註釋中的一部分)
以‘#’ 開始的註釋行
‘=’行,這是給一個屬性賦值的語句
現在讓我們再看看Properties類的的特點:
註釋是永續性的(當儲存Properties類時,它們不會丟失掉)。注意每一個註釋都屬於某個屬性。在‘=’行上的註釋行屬於該‘’屬性。
當儲存Properties類後,屬性仍然保留自己的位置。
它對各種字元型別都有效:char、wchar_t等等
Properties類的使用相當簡單:
save():儲存屬性
has_property(strPropertyName):如果類中有該屬性則返回‘真’
string get_property(strPropertyName):返回指定的屬性(如果指定屬性不存在,則丟擲例外)
set_property(strPropertyName, strPropertyValue):設定給定屬性
stringget_property_comment( strPropertyName):返回屬於指定屬性的註釋(如果指定屬性的註釋不存在,則丟擲例外)
set_property_comment(strPropertyName, strPropertyComment):設定指定屬性的註釋(如果指定屬性的註釋不存在,則丟擲例外)
下面是file_reader_writer類以及相應例子的程式碼。執行它之後,請檢視properties.txt檔案。看看訪問和修改它是多麼容易的一件事。
#include exception>
#include string>
#include sstream>
#include map>
#include vector>
#include fstream>
#include algorithm>
#include functional>
//允許字串轉化
template< class FromCharType, class ToCharType>
inline std::basic_string< ToCharType> convert_string( const std::basic_string< FromCharType> & strSource)
{
std::basic_string< ToCharType> strDest;
int nSourceLen = strSource.length();
strDest.resize( nSourceLen);
for ( int idxChar = 0; idxChar < nSourceLen; idxChar++)
{ strDest[ idxChar] = ( ToCharType)strSource[ idxChar]; }
return strDest;
}
// 用於trim_spaces;
template< class CharType>
struct is_char_in_str : public std::binary_function< CharType, std::basic_string< CharType>, bool>
{
bool operator()( CharType ch, const std::basic_string< CharType> & strSource) const
{ return (strSource.find( ch) != std::basic_string< CharType>::npos); }
};
//消除字串中的空格
template< class CharType>
std::basic_string< CharType> trim_spaces( const std::basic_string< CharType> & strSource)
{
std::basic_string< CharType> strSpaces; strSpaces += ( CharType)' '; strSpaces += ( CharType)' ';
typedef std::basic_string< CharType> string_type;
string_type::const_iterator
itFirst = std::find_if( strSource.begin(), strSource.end(),
std::not1( std::bind2nd( is_char_in_str< CharType>(), strSpaces)));
string_type::const_reverse_iterator
ritLast = std::find_if( strSource.rbegin(), strSource.rend(),
std::not1( std::bind2nd( is_char_in_str< CharType>(), strSpaces)));
string_type::const_iterator itLast = &*ritLast;
if ( itFirst <= itLast)
if ( itFirst != strSource.end())
return string_type( itFirst, itLast + 1);
return string_type();
}
// 當讀寫屬性時的例外
class properties_exception : public std::exception
{
public:
properties_exception( const std::string & str) : m_strDescription( str) {}
const char * what() const { return m_strDescription.c_str(); }
private:
std::string m_strDescription;
};
// 從檔案中讀寫屬性
template< class CharType>
class file_reader_writer
{
typedef std::basic_string< CharType> string_type;
public:
// ... needed within the basic_properties!
typedef CharType char_type;
public:
file_reader_writer( const char * strFileName)
: m_bIsDirty( false), m_strFileName( strFileName) { read_properties(); }
~file_reader_writer() { save(); }
void save()
{ write_properties(); }
bool has_property( const string_type & strPropertyName) const
{
PropertiesCollection::const_iterator itFound = m_collProperties.find( strPropertyName);
return ( itFound != m_collProperties.end());
}
const string_type & get_property( const string_type & strPropertyName) const
{
PropertiesCollection::const_iterator itFound = m_collProperties.find( strPropertyName);
if ( itFound != m_collProperties.end())
return itFound->second.m_strValue;
else
throw properties_exception(
"Cound not get property value for '" + convert_string< char_type, char>( strPropertyName) +
"', since this property does not exist.");
}
void set_property( const string_type & strProperty, const string_type & strPropertyValue)
{
PropertiesCollection::iterator itFound = m_collProperties.find( strProperty);
if ( itFound == m_collProperties.end())
// 它是一個新的屬性
m_aProperties.push_back( strProperty);
m_collProperties[ strProperty].m_strValue = strPropertyValue;
m_bIsDirty = true;
}
const string_type & get_property_comment( const string_type & strPropertyName) const
{
PropertiesCollection::const_iterator itFound = m_collProperties.find( strPropertyName);
if ( itFound != m_collProperties.end())
return itFound->second.m_strComment;
else
throw properties_exception(
"Cound not get property comment for '" + convert_string< char_type, char>( strPropertyName) +
"', since this property does not exist.");
}
void set_property_comment( const string_type & strPropertyName, const string_type & strPropertyComment)
{
PropertiesCollection::iterator itFound = m_collProperties.find( strPropertyName);
if ( itFound != m_collProperties.end())
itFound->second.m_strComment = strPropertyComment;
else
throw properties_exception(
"Cound not set property comment for '" + convert_string< char_type, char>( strPropertyName) +
"', since this property does not exist.");
m_bIsDirty = true;
}
private:
static const char_type get_delimeter() { return '='; }
static const char_type get_comment() { return '#'; }
void read_properties()
{
const char DELIMETER = get_delimeter();
const char COMMENT = get_comment();
std::basic_ifstream< char_type> streamIn( m_strFileName.c_str());
string_type strLine;
string_type strComment;
while ( std::getline( streamIn, strLine))
{
strLine = trim_spaces( strLine);
bool bIsComment = strLine.empty() || ( strLine[ 0] == COMMENT);
if ( bIsComment)
{ strComment += strLine; strComment += ' '; }
else
{
int idxDelimeter = strLine.find( DELIMETER);
if ( idxDelimeter != string_type::npos)
{
string_type strPropertyName = strLine.substr( 0, idxDelimeter);
string_type strPropertyValue = strLine.substr( idxDelimeter + 1);
strPropertyName = trim_spaces( strPropertyName);
strPropertyValue = trim_spaces( strPropertyValue);
m_collProperties.insert(
std::make_pair( strPropertyName, OneProperty( strPropertyValue, strComment)));
m_aProperties.push_back( strPropertyName);
strComment.erase();
}
else
throw properties_exception(
"While reading from file '" + m_strFileName +
"', we encountered an invalid line: " + convert_string< char_type, char>( strLine));
}
}
m_strLastComment = strComment;
}
void write_properties() const
{
if ( !m_bIsDirty)
// 無需儲存
;return;
const char DELIMETER = get_delimeter();
std::basic_ofstream< char_type> streamOut( m_strFileName.c_str());
PropertiesArray::const_iterator
itFirst = m_aProperties.begin(), itLast = m_aProperties.end();
while ( itFirst != itLast)
{
const string_type & strPropertyName = *itFirst;
const OneProperty & property = m_collProperties.find( strPropertyName)->second;
write_property_comment( streamOut, property.m_strComment);
string_type strToWrite = strPropertyName;
strToWrite += ' '; strToWrite += DELIMETER; strToWrite += ' ';
streamOut strToWrite << property.m_strValue << std::endl;
++itFirst;
}
write_property_comment( streamOut, m_strLastComment);
m_bIsDirty = false;
}
void write_property_comment( std::basic_ofstream< char_type> & streamOut, const string_type & strComment) const
{
const char COMMENT = get_comment();
std::basic_stringstream< char_type> streamComment( strComment);
string_type strLine;
while ( std::getline( streamComment, strLine))
{
if ( !strLine.empty())
if ( strLine[ 0] == COMMENT)
streamOut << strLine << std::endl;
else
{
string_type strPrefix;
strPrefix += COMMENT; strPrefix += ' ';
streamOut << strPrefix << strLine << std::endl;
}
else
streamOut << std::endl;
}
}
private:
// 我們用來讀寫的檔案
std::string m_strFileName;
//如果自上次儲存後屬性又有修改則賦值為“真”
mutable bool m_bIsDirty;
struct OneProperty
{
OneProperty() {}
OneProperty( const string_type & strValue, const string_type & strComment)
: m_strValue( strValue), m_strComment( strComment) {}
string_type m_strValue;
string_type m_strComment;
};
// 屬性
typedef std::map< string_type, OneProperty> PropertiesCollection;
PropertiesCollection m_collProperties;
// ……確保我們是按同樣的次序儲存屬性
// 讀屬性
typedef std::vector< string_type> PropertiesArray;
PropertiesArray m_aProperties;
// 讀取所有屬性後的註釋
string_type m_strLastComment;
};
下面是用到這個類的一個例子:
#include
int main(int argc, char* argv[])
{
file_reader_writer< char> rw( "properties.txt");
rw.set_property( "App Path", "C:Program FilesPFSjokExplorer");
rw.set_property_comment( "App Path", "where are we installed?");
rw.set_property( "Version", "4.0.0.1");
rw.set_property_comment( "Version", "What's our version?");
rw.set_property( "Run On Startup", "1");
rw.set_property_comment( "Run On Startup", "are we run, when the computer starts?");
rw.set_property( "Automatic Logoff Minutes", "60");
rw.set_property_comment( "Automatic Logoff Minutes", "when should we deconnect from the server?");
rw.set_property( "Connect To Internet", "Use IE");
rw.set_property_comment( "Connect To Internet", "how are we to connect to the Internet?");
std::cout << "This is how we connect to Internet: " << rw.get_property( "Connect To Internet") << std::endl;
return 0;
}
使用Properties類的好處就是你可以很輕鬆的理解和修改它們。在本文的第一部分中,你將看到我們也可以在C++中使用Properties類。本文的第二部分將向你演示透過使用運算子>>和<
現在介紹C++ Properties檔案的結構。該檔案的每一行可以是下面三種情況中的某一種:
空行(認為它是註釋中的一部分)
以‘#’ 開始的註釋行
‘=’行,這是給一個屬性賦值的語句
現在讓我們再看看Properties類的的特點:
註釋是永續性的(當儲存Properties類時,它們不會丟失掉)。注意每一個註釋都屬於某個屬性。在‘=’行上的註釋行屬於該‘’屬性。
當儲存Properties類後,屬性仍然保留自己的位置。
它對各種字元型別都有效:char、wchar_t等等
Properties類的使用相當簡單:
save():儲存屬性
has_property(strPropertyName):如果類中有該屬性則返回‘真’
string get_property(strPropertyName):返回指定的屬性(如果指定屬性不存在,則丟擲例外)
set_property(strPropertyName, strPropertyValue):設定給定屬性
stringget_property_comment( strPropertyName):返回屬於指定屬性的註釋(如果指定屬性的註釋不存在,則丟擲例外)
set_property_comment(strPropertyName, strPropertyComment):設定指定屬性的註釋(如果指定屬性的註釋不存在,則丟擲例外)
下面是file_reader_writer類以及相應例子的程式碼。執行它之後,請檢視properties.txt檔案。看看訪問和修改它是多麼容易的一件事。
#include exception>
#include string>
#include sstream>
#include map>
#include vector>
#include fstream>
#include algorithm>
#include functional>
//允許字串轉化
template< class FromCharType, class ToCharType>
inline std::basic_string< ToCharType> convert_string( const std::basic_string< FromCharType> & strSource)
{
std::basic_string< ToCharType> strDest;
int nSourceLen = strSource.length();
strDest.resize( nSourceLen);
for ( int idxChar = 0; idxChar < nSourceLen; idxChar++)
{ strDest[ idxChar] = ( ToCharType)strSource[ idxChar]; }
return strDest;
}
// 用於trim_spaces;
template< class CharType>
struct is_char_in_str : public std::binary_function< CharType, std::basic_string< CharType>, bool>
{
bool operator()( CharType ch, const std::basic_string< CharType> & strSource) const
{ return (strSource.find( ch) != std::basic_string< CharType>::npos); }
};
//消除字串中的空格
template< class CharType>
std::basic_string< CharType> trim_spaces( const std::basic_string< CharType> & strSource)
{
std::basic_string< CharType> strSpaces; strSpaces += ( CharType)' '; strSpaces += ( CharType)' ';
typedef std::basic_string< CharType> string_type;
string_type::const_iterator
itFirst = std::find_if( strSource.begin(), strSource.end(),
std::not1( std::bind2nd( is_char_in_str< CharType>(), strSpaces)));
string_type::const_reverse_iterator
ritLast = std::find_if( strSource.rbegin(), strSource.rend(),
std::not1( std::bind2nd( is_char_in_str< CharType>(), strSpaces)));
string_type::const_iterator itLast = &*ritLast;
if ( itFirst <= itLast)
if ( itFirst != strSource.end())
return string_type( itFirst, itLast + 1);
return string_type();
}
// 當讀寫屬性時的例外
class properties_exception : public std::exception
{
public:
properties_exception( const std::string & str) : m_strDescription( str) {}
const char * what() const { return m_strDescription.c_str(); }
private:
std::string m_strDescription;
};
// 從檔案中讀寫屬性
template< class CharType>
class file_reader_writer
{
typedef std::basic_string< CharType> string_type;
public:
// ... needed within the basic_properties!
typedef CharType char_type;
public:
file_reader_writer( const char * strFileName)
: m_bIsDirty( false), m_strFileName( strFileName) { read_properties(); }
~file_reader_writer() { save(); }
void save()
{ write_properties(); }
bool has_property( const string_type & strPropertyName) const
{
PropertiesCollection::const_iterator itFound = m_collProperties.find( strPropertyName);
return ( itFound != m_collProperties.end());
}
const string_type & get_property( const string_type & strPropertyName) const
{
PropertiesCollection::const_iterator itFound = m_collProperties.find( strPropertyName);
if ( itFound != m_collProperties.end())
return itFound->second.m_strValue;
else
throw properties_exception(
"Cound not get property value for '" + convert_string< char_type, char>( strPropertyName) +
"', since this property does not exist.");
}
void set_property( const string_type & strProperty, const string_type & strPropertyValue)
{
PropertiesCollection::iterator itFound = m_collProperties.find( strProperty);
if ( itFound == m_collProperties.end())
// 它是一個新的屬性
m_aProperties.push_back( strProperty);
m_collProperties[ strProperty].m_strValue = strPropertyValue;
m_bIsDirty = true;
}
const string_type & get_property_comment( const string_type & strPropertyName) const
{
PropertiesCollection::const_iterator itFound = m_collProperties.find( strPropertyName);
if ( itFound != m_collProperties.end())
return itFound->second.m_strComment;
else
throw properties_exception(
"Cound not get property comment for '" + convert_string< char_type, char>( strPropertyName) +
"', since this property does not exist.");
}
void set_property_comment( const string_type & strPropertyName, const string_type & strPropertyComment)
{
PropertiesCollection::iterator itFound = m_collProperties.find( strPropertyName);
if ( itFound != m_collProperties.end())
itFound->second.m_strComment = strPropertyComment;
else
throw properties_exception(
"Cound not set property comment for '" + convert_string< char_type, char>( strPropertyName) +
"', since this property does not exist.");
m_bIsDirty = true;
}
private:
static const char_type get_delimeter() { return '='; }
static const char_type get_comment() { return '#'; }
void read_properties()
{
const char DELIMETER = get_delimeter();
const char COMMENT = get_comment();
std::basic_ifstream< char_type> streamIn( m_strFileName.c_str());
string_type strLine;
string_type strComment;
while ( std::getline( streamIn, strLine))
{
strLine = trim_spaces( strLine);
bool bIsComment = strLine.empty() || ( strLine[ 0] == COMMENT);
if ( bIsComment)
{ strComment += strLine; strComment += ' '; }
else
{
int idxDelimeter = strLine.find( DELIMETER);
if ( idxDelimeter != string_type::npos)
{
string_type strPropertyName = strLine.substr( 0, idxDelimeter);
string_type strPropertyValue = strLine.substr( idxDelimeter + 1);
strPropertyName = trim_spaces( strPropertyName);
strPropertyValue = trim_spaces( strPropertyValue);
m_collProperties.insert(
std::make_pair( strPropertyName, OneProperty( strPropertyValue, strComment)));
m_aProperties.push_back( strPropertyName);
strComment.erase();
}
else
throw properties_exception(
"While reading from file '" + m_strFileName +
"', we encountered an invalid line: " + convert_string< char_type, char>( strLine));
}
}
m_strLastComment = strComment;
}
void write_properties() const
{
if ( !m_bIsDirty)
// 無需儲存
;return;
const char DELIMETER = get_delimeter();
std::basic_ofstream< char_type> streamOut( m_strFileName.c_str());
PropertiesArray::const_iterator
itFirst = m_aProperties.begin(), itLast = m_aProperties.end();
while ( itFirst != itLast)
{
const string_type & strPropertyName = *itFirst;
const OneProperty & property = m_collProperties.find( strPropertyName)->second;
write_property_comment( streamOut, property.m_strComment);
string_type strToWrite = strPropertyName;
strToWrite += ' '; strToWrite += DELIMETER; strToWrite += ' ';
streamOut strToWrite << property.m_strValue << std::endl;
++itFirst;
}
write_property_comment( streamOut, m_strLastComment);
m_bIsDirty = false;
}
void write_property_comment( std::basic_ofstream< char_type> & streamOut, const string_type & strComment) const
{
const char COMMENT = get_comment();
std::basic_stringstream< char_type> streamComment( strComment);
string_type strLine;
while ( std::getline( streamComment, strLine))
{
if ( !strLine.empty())
if ( strLine[ 0] == COMMENT)
streamOut << strLine << std::endl;
else
{
string_type strPrefix;
strPrefix += COMMENT; strPrefix += ' ';
streamOut << strPrefix << strLine << std::endl;
}
else
streamOut << std::endl;
}
}
private:
// 我們用來讀寫的檔案
std::string m_strFileName;
//如果自上次儲存後屬性又有修改則賦值為“真”
mutable bool m_bIsDirty;
struct OneProperty
{
OneProperty() {}
OneProperty( const string_type & strValue, const string_type & strComment)
: m_strValue( strValue), m_strComment( strComment) {}
string_type m_strValue;
string_type m_strComment;
};
// 屬性
typedef std::map< string_type, OneProperty> PropertiesCollection;
PropertiesCollection m_collProperties;
// ……確保我們是按同樣的次序儲存屬性
// 讀屬性
typedef std::vector< string_type> PropertiesArray;
PropertiesArray m_aProperties;
// 讀取所有屬性後的註釋
string_type m_strLastComment;
};
下面是用到這個類的一個例子:
#include
int main(int argc, char* argv[])
{
file_reader_writer< char> rw( "properties.txt");
rw.set_property( "App Path", "C:Program FilesPFSjokExplorer");
rw.set_property_comment( "App Path", "where are we installed?");
rw.set_property( "Version", "4.0.0.1");
rw.set_property_comment( "Version", "What's our version?");
rw.set_property( "Run On Startup", "1");
rw.set_property_comment( "Run On Startup", "are we run, when the computer starts?");
rw.set_property( "Automatic Logoff Minutes", "60");
rw.set_property_comment( "Automatic Logoff Minutes", "when should we deconnect from the server?");
rw.set_property( "Connect To Internet", "Use IE");
rw.set_property_comment( "Connect To Internet", "how are we to connect to the Internet?");
std::cout << "This is how we connect to Internet: " << rw.get_property( "Connect To Internet") << std::endl;
return 0;
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-961283/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JavaSE基礎:Properties屬性類Java
- java 類基礎(轉)Java
- Java教程分享:使用Spring框架能帶來哪些好處?JavaSpring框架
- JAVA基礎:謹慎使用Date和Time類(轉)Java
- Java基礎:類的深入研究(轉)Java
- Java 對 properties 檔案操作 (ResourceBundle 類和 Properties 類)Java
- 享受正版win7帶來的好處Win7
- Java基礎-設計一個Java類所需的方法(轉)Java
- Java基礎類庫【Java】Java
- Java程式設計基礎23——IO(其他流)&PropertiesJava程式設計
- 雲安為金融行業帶來的好處行業
- Java基礎類庫Java
- JAVA基礎--Arrays類Java
- Java基礎--Java 內部類Java
- 現代網路給企業帶來的好處
- app開發公司給企業帶來的好處APP
- 專案成本管理的基礎及好處
- Java基礎| 類和物件Java物件
- Java基礎 - 類載入Java
- 【Java基礎】類和介面Java
- 【Java基礎知識】Java反射--Class、Constructor、Filed、Method類的使用Java反射Struct
- Java中String類不可變性的好處Java
- 免費OA系統給企業帶來的好處
- Java中的Properties類儲存丟失資訊?!Java
- java 繼承的基礎(轉)Java繼承
- java基礎的內部類定時Java
- Java基礎 ---Throwable異常類Java
- Java基礎-抽象類和介面Java抽象
- JAVA基礎:再談在Java中使用列舉(轉)Java
- 智慧電話機器人給企業帶來的好處機器人
- 企業免費OA辦公系統帶來的好處
- ERP系統能給企業帶來的那些好處
- Oracle10g BIGFILE表空間帶來的好處Oracle
- 智慧門鎖APP能給生活帶來哪些好處?APP
- 電銷機器人能帶來什麼好處?機器人
- IT 服務管理可以為你帶來什麼好處?
- 【Java基礎】--異常處理Java
- Forrester:傾聽社會化網路使用者聲音帶來好處REST