본문 바로가기

Native/C++

read tiny size text file

https://www.facebook.com/photo.php?fbid=960557974006760&set=gm.646358332164663&type=1&theater

std::ifstream fp("text.txt");
if (!fp) {
return 0;
}

std::stringstream ss;
ss << fp.rdbuf();
std::cout << ss.str();
fp.close();

std::cin.get();

'Native > C++' 카테고리의 다른 글

sublime text 에서 검색시 폴더 제외, 파일 제외 하기  (0) 2014.10.10
My Top 10 Sublime Text Plugins  (0) 2014.09.25
libevent with visual studio 2008  (0) 2014.01.17
cpp net lib  (0) 2013.10.02
push framework  (0) 2013.10.02