Hey guys,
One question!
How do people import weird libraries? I mean.... like in Java, I can compile some of the coding that I copy from Internet as the libraries are not found.... Does that means that there is some kinda programmer defined library?
For example:
import com.ibm.as400.access.*;
import com.urbancode.lib.registry.RegistryEntry;
import java.rmi.*;
And.... lots more!! What's that?? How do we define that? Can anyone explain to me? Do we need to store something so that we can call the library?
Oh yes....another question.....
How to make KeyListener for the "down", "up", "left" & "right" button??? I am creating a game but.... can't find a way to do the keylistener for that...
I try using:
char c=e.getKeyChar();
And.... it only works for the alphanumeric and numeric.... And... I also tried using VK_DOWN.... but it says that variable not found.... Mmm... that's weird!
So.... anyone know how???