
文件
daqinzl
这个作者很懒,什么都没留下…
展开
-
读写文件--java
读文件 一, String proppath = "/org/b/pool/"; String propname = "db.properties"; URL propertyurl = getClass().getResource( proppath + propname); Properties dbP原创 2013-03-17 12:12:38 · 509 阅读 · 0 评论 -
复制文件--c
#include #include #include using namespace std; void copy(LPCTSTR srcfile, LPCTSTR destfile){ std::ifstream input(srcfile, ios::binary); std::ofstream output(destfile, ios::binary);原创 2013-03-17 12:01:24 · 478 阅读 · 0 评论 -
读写文件--c
读文件 一, string line; ifstream in; in.open(filepath); if(! in){ return; } CString str; CString strtemp; while (getline(in,line)){ str = line.c_str(); strtemp =原创 2013-03-17 12:20:21 · 507 阅读 · 0 评论