Creating Java Applet to Play .au File on Startup
Question: I am trying to create a Java routine to play an .au file whenit starts up (I want to then add this as a startup to my Web page).I
Question: I am trying to create a Java routine to play an .au file whenit starts up (I want to then add this as a startup to my Web page).I
Question: Can JavaScript be used to access the client’s printer? Answer: No. JavaScript was designed so that malicious JavaScript programmers would have very little power to make their victims miserable.
Question: I am trying to write a Java applet which canretrieve data from the user and then write itto a file on the server. Unfortunately I do nothave the access
sqrt()
Question: How do you calculate sqrt()? Answer: Of course the best way to compute square roots is to useMath.sqrt(),but I assume your question is academic. I’m not sure of the
Question: How do you lock a file in Java to prevent simultaneous multipleaccesses? Answer: If you’re concerned about simultaneous access by independent processes,you’ll have to rely on the host OS
Question: I have a server application listening for clientapplets to connect. The server spawns a new thread each timea connection to a client is established. I want to keeptrack, i.e.
Question: What is the maximum size of a string array I can have in my applet?I am trying to store some stock prices in a string array after reading themfrom
Question: This may be too vague, but:I spawn a thread (after a button click) which bringsup a new window. This works great on my PC runningNetscape 3.0 and Internet Explorer,
Question: Is it possible to launch another application from aJava application (not an applet)? Answer: Yes. There are two classes of interest for performingsystem level functions such as this: java.lang.Runtime