http://java.sun.com/docs/books/tutorial/index.html
There are many other pages out there. groups.google.com is handy when you
have questions about compile time and runtime problems.
On Wed, 16 Jan 2002, Ali Ghaharbeighi wrote:
> Hi,
>
> I am very new to Java and would like to learn this lang
On 21 Dec 2001, Jesse Stockall wrote:
> On Fri, 2001-12-21 at 14:45, Kunal Bisla wrote:
> > Hi ALL,
> > Does any body know of an implemantation of java comm
> > api for linux
> > thanks ,
> > Kunal
>
> If you read Sun's FAQ
> http://java.sun.com/products/javacomm/javadocs/CommAPI_FAQ.txt
>
Just opening the port and writting may work with defaults. I penciled in
crude support for parallel port support but didnt finish it.
The open source version of the commapi library is at www.rxtx.org
You will have to play with the ioctls in the library. I never got around
to making a test envi
http://interstice.com/~kevinh/projects/javasignals/
--
Trent Jarvi
[EMAIL PROTECTED]
On Thu, 30 Mar 2000, Bruno Boettcher wrote:
> Hello,
>
> i didn't found this in the FAQ's nor in the docu is there a way to capture
> -c interruptions or as long as this one to any one of the other
> uni
The current directory is usually not in your path. Try exec("./a.out")
---
Trent Jarvi
[EMAIL PROTECTED]
On Thu, 16 Mar 2000 [EMAIL PROTECTED] wrote:
> Hi:
>
> I got a java application that uses exec("nativeApp.exe") to start a native
> application. It works fine on NT. But on Linux exec("
Instantiate a new Frame and use it instead.
public class blah extends Applet
{
public void init()
{
Frame f = new Frame("Text");
f.setBounds(100,50,300,100);
f.show();
}
}
On Mon, 10 Jan 2000 [EMAIL PROTECTED] wrote:
> Dea