출처: http://stackoverflow.com/questions/5461972/boostfiltering-streambuf-with-gzip-decompressor-how-to-access-line-by-line



ifstream fin_unmapped_read(output.c_str(), ios_base::in | ios_base::binary);

filtering_streambuf<input> in;

in.push(bzip2_decompressor());

in.push(fin_unmapped_read);

//boost::iostreams::copy(in, cout);


std::istream incoming(&in);
getline(incoming, transfer);


Posted by halloRa
,

출처: http://rasskang.tistory.com/31


cpp 파일들을 array list로 할 경우

첫 번째 방식 사용 불가 -> *.cpp와 같은 확장자 포맷으로 인하여

두 번째 방식을 사용하여야 한다.

'프로그래밍 > SCRIPT' 카테고리의 다른 글

PHP] 파일 읽기  (0) 2011.06.22
PHP] php error 출력 설정  (0) 2011.06.19
html, PHP] form 사용하기  (0) 2011.06.18
php와 mysql 연동  (0) 2011.06.18
Posted by halloRa
,

출처: http://www.daniweb.com/software-development/java/threads/26217/deleting-rows-from-a-jtable


((DefaultTableModel)테이블명.getModel()).removeRow(row_index);

'프로그래밍 > JAVA' 카테고리의 다른 글

리눅스 상에서 jar 파일 만들기  (0) 2013.07.11
[mysql]  (0) 2012.10.12
Table 만들기  (0) 2012.09.12
Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
Posted by halloRa
,