添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
有腹肌的啄木鸟  ·  使用 JdbcTemplate ...·  2 周前    · 
爱跑步的钥匙  ·  MybatisPlus学习笔记 | ...·  2 周前    · 
咆哮的馒头  ·  Get Nth Entry from ...·  1 周前    · 
留胡子的汤圆  ·  SharePoint 搜索 REST ...·  1 周前    · 
没有腹肌的开水瓶  ·  Exception in thread ...·  1 周前    · 
冲动的凉茶  ·  过年| ...·  8 月前    · 
会开车的草稿本  ·  官宣! ...·  1 年前    · 
wukexin wrote:
[color=blue]
> I have a program in file input and output. I need copy the whole[/color]
source file's content to a string only once, I don't know what? Help me?
thank you.
Read my thread "fileToStri ng" (use http://groups.google.com and search for
my street name & fileToString).
I went with this:
std::string fileToString(st d::string const& name) {
std::ifstream in(name.c_str() );
std::ostringstr eam out;
out << in.rdbuf();
return out.str();
Phlip