将数据以数组的形式写入/读出文件

ZDNet软件频道 时间:2002-12-25 作者:BUILDER.COM |  我要评论()
本文关键词:javatips
在编程过程中,当需要将数据读入文件然后又把数据从文件读出的时候,程序员会碰到很多问题。然而,由于传递的数据通常是以数组形式为对象,所以这样的数据能够很方便地写入文件或者从文件读出来,这就大大地解决了文件中数据输入/输出的很多问题。

在编程过程中,当需要将数据读入文件然后又把数据从文件读出的时候,程序员会碰到很多问题。然而,由于传递的数据通常是以数组形式为对象,所以这样的数据能够很方便地写入文件或者从文件读出来,这就大大地解决了文件中数据输入/输出的很多问题。

当调试程序时,文件的输入/输出功能也非常的有用。例如,当把一个范围很大的数组写到控制台时,在查找错误时往往很困难,因为你只能看到数组的最后结果,数组的过程无法获得。然而,如果你把数据以数组的形式写入一个文件时,你就会看到数组的整个过程的内容。

为了能够把数据以数组的形式写入/读出文件,我们必须正确地从文件流中写入/读出数组的各个元素。所以,对于你想传递的元素,你必须以>>符号和<<符号来定义。但是有一个缺点是每一个元素都占有一行,这意味着>>符号是将元素在一行上写入,而<<符号是将元素在一行上读出。

当写入/读出的元素中含有字符串时,你必须小心。如果这些字符串包含着空格或者回车键,写入文件时它们被忽略,而读出文件时它们则被正确读出。如果你没有忽略这些符号,会导致错误产生。你可以使用一个字符串类来清晰地操作这些元素。

这是array_to_file and array_from_file函数,并提供了它们的用法范例。

#include <fstream>
#include <string>
#include <iterator>
#include <sstream>

typedef char char_type;
typedef std::basic_string< char_type> string_type;

template< class Iterator>
void range_to_file( Iterator itFirst, Iterator itLast, const char * _
strFileName)
{
std::basic_ofstream< char_type> streamOut( strFileName);
while ( itFirst != itLast)
{
streamOut << *itFirst << std::endl;
++itFirst;
}
streamOut.close();
}

template< class Container>
void array_to_file( const Container & cont, const char * strFileName)
{
range_to_file< typename Container::const_iterator>( _
cont.begin(), cont.end(), strFileName);
}

template< class OutputIterator>
void range_from_file( OutputIterator range, const char * strFileName)
{
typedef typename OutputIterator::container_type::value_type value_type;
const int MAX_LINE_SIZE = 2048;
char_type strLine[ MAX_LINE_SIZE];
std::basic_ifstream< char_type> streamIn( strFileName);
while ( streamIn.good())
{
streamIn.getline( strLine, MAX_LINE_SIZE);
std::basic_stringstream< char_type> streamLine( strLine);
value_type value;
streamLine >> value;
(*range) = value;
++range;
}
streamIn.close();
}

template< class Container>
void array_from_file( Container & cont, const char * strFileName)
{
cont.clear();
range_from_file( std::back_insert_iterator< _
Container>( cont), strFileName);
}

百度大联盟认证黄金会员Copyright© 1997- CNET Networks 版权所有。 ZDNet 是CNET Networks公司注册服务商标。
中华人民共和国电信与信息服务业务经营许可证编号:京ICP证010391号 京ICP备09041801号-159
京公网安备:1101082134