string Int2String(int nVal) { string str; ostringstream oss; oss<<nVal; str = oss.str(); return str; }