Two Questions From a Beginner

Alright, so like the title says, I have two questions:

1. Is there a way I can put jcreator on a computer without internet? I tried downloading the jcreator download from the internet to a thumbdrive and then installing it on the computer without internet, but when I compile, I get an error that it can't find the file.

2. Can java collect data in realtime by use of a serial port? I'm using a ULI (Universal Lab Interface).

Thank you!!!

[465 byte] By [kcj989a] at [2007-10-3 9:45:18]
# 1
1) Don't know.2) Yes, you need to use the java.comm api. Pretty straigntforward, I think there is an example program included as part of the comm api download. if not, you can find it with a google search.
BobCa at 2007-7-15 5:01:57 > top of Java-index,Java Essentials,Java Programming...
# 2

> 1. Is there a way I can put jcreator on a computer

> without internet? I tried downloading the jcreator

> download from the internet to a thumbdrive and then

> installing it on the computer without internet, but

> when I compile, I get an error that it can't find the

> file.

You also need to install the JDK to get the compiler, runtime, etc. JCreator is just an IDE, a window for editing code:

http://java.sun.com/javase/downloads/index.jsp

JimmyMa at 2007-7-15 5:01:57 > top of Java-index,Java Essentials,Java Programming...