I have this line of code:
out.write(s+n);
which writes to a file the variables of whatever is in s and n.
For example
s= tree
n=home
the output file reads
treehome
how do i make it so theres a space in between tree and home?
Thomas Fritsch - 09 Aug 2006 17:47 GMT
RigasMinho schrieb:
> I have this line of code:
> out.write(s+n);
[quoted text clipped - 9 lines]
>
> how do i make it so theres a space in between tree and home?
out.write(s + " " + n);

Signature
Thomas
vvk - 10 Aug 2006 05:16 GMT
hi,
this is from vasanth........try the following:
out.write(s+" "+n);
__Vasanth
> I have this line of code:
> out.write(s+n);
[quoted text clipped - 9 lines]
>
> how do i make it so theres a space in between tree and home?