Robert Ziel

Greenhorn
+ Follow
since Apr 22, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Robert Ziel

hi there,

in my application i have to wait for an event..( data read from socket )
but i do not want the page waiting for that amount of seconds until it can display the page in stead i want some sort of event so i can process the data further..
whenever the data has been read..
is this possible and if so how..??

thanks,
robert
[ June 06, 2003: Message edited by: Robert Ziel ]
21 years ago
Hi michael,
an api is just a subscription of a method
and how to use this method in your application
robert
22 years ago
hi all,
to my knowledge a string literal will never be
eligible for gc is this true??
could someone clear this up for me thanks..
Robert
example
Hi,
why not use a frame
22 years ago

[ May 28, 2002: Message edited by: Robert Ziel ]
22 years ago
Hi Cristoffer,
an inner class my extend another class or implement an interface
or nothing (implicit Object)
robert
hi there,
i still do not get it...
id got another example..
could someone make this clearup the question
why this parent's method is invoked
and not the child version..
also when i say Parent p1 = new Child();
p1.dostuff();
will invoke the parent's method..
or is this because the static method belongs to
the class object rather than the instance..??
thanks,
Robert

[ May 24, 2002: Message edited by: Robert Ziel ]
Hi
try
hand.push(card)
Robert
22 years ago
Hi,
if you are planning to use webstart you have to make use of a webserver so the url you type
must be something like http:\\localhost:8080\webstartTest.jnlp
you can use tomcat for example..
otherwise just use a applet
Robert
22 years ago
thanks Jamal
and Rob good question
Hi ,
i think the question is about the increment operator...
i would expect it started from 1
apparently in the for statement there is no difference between
++i
and i++
could someone explain this please??
Robert
Hi ,
same answere as in other thread...
the sleep sleeps for x mili seconds
so sleep(500) sleeps for at least half a second..
Robert
Hi,
sleep(1800) is 1.8 second
sleep(30000) 30 seconds
or could be a bit more see the api
Robert
hi,
just download it from the java website
and adjust your webserver add the mimetype jnlp
place a .jnlp file on your server for example see
the sun's website..
that should do the trick..
you can use a normal main application
hope this helps ,
Robert
22 years ago
hi,
sounds to me you got a nullpointerexception
maybe when you add some code somone can point out the problem to you
Robert