Re: Questions about jdk117_v1a for Linux

1998-12-10 Thread Javier G.C.
This is a cut&paste from README.linux for JDK 1.1.6, Version 5 (09/29/98) : Missing libXp -- The JDK now depends on having the X printing library, libXp installed with the rest of your X files. This is part of the most recent X11 distributions,so you'll need to upgrade (or,

Re: What's in it for me?

1998-12-11 Thread Javier G.C.
So why dont you post it in make-fast-money-thanks-to-stupid-people group?? === Javier Gil CandelasDpto. Ingenieria de Sistemas Telematicos email: [EMAIL PROTECTED]E.T.S.I. Telecomunicacion http:

Re: Copy File in Java

1998-12-17 Thread Javier G.C.
Hope this little example helps you :) import java.io.*; class copy { public static void main (String args[]) throws IOException { if (args.length != 2) throw (new RuntimeException ("Syntax: copy ")); FileInputStream in = new FileInputStream(args[0]); FileOutputS