V
vertigo
Hello
Sorry for such silly question but i can not convert long to int
or int to string:
File f = new File(fullname);
String len=f.length().toString();//1
int len=f.length().intValue;//2
in both cases i receive durring compilation:
"long cannot be dereferenced"
Why ?
Thanx
Michal
Sorry for such silly question but i can not convert long to int
or int to string:
File f = new File(fullname);
String len=f.length().toString();//1
int len=f.length().intValue;//2
in both cases i receive durring compilation:
"long cannot be dereferenced"
Why ?
Thanx
Michal