- Java Networking gives you the ability to open
connections between your Java applications and other servers across the
network. The foundation classes which you will use to create these
connections can be found in the java.net package so when you want to use
networking you must import the classes using
import java.net.*;
- We have already discussed the restrictions placed
on applets in previous sections, but even within the sandbox, your
applets have some excellent functionality available to them. let's
look at the process of networking in greater detail.
Previous Page |
Next Page
|