Can anyone show me how?
something like this in C++
void myfunction(ifstream &fp, ...)
is it the same?




Posted 15 December 2010 - 08:36 PM
void myfunction(ifstream &fp, ...)
Posted 15 December 2010 - 08:54 PM
Posted 15 December 2010 - 10:02 PM
String[] data = str.split("/n");
try{
out.write(data[i]);
}catch(java.io.IOException exp){ exp.printStackTrace();}
main.java:115: cannot find symbol
symbol : method write(java.lang.String)
location: class java.io.DataOutputStream
out.write(data[i]);
Posted 16 December 2010 - 07:15 AM
DataOutputStream dos = new DataOutputStream(
new FileOutputStream("filename.file"));
