|
![]() |
Si algún link no funciona, me dicen el correcto, ya que usando getright se me borró el archivo log de la versión para linuxAmbas versiones ocupan aproximademente entre 19MB y 20MB cualquiera de las dos. así que tendremos que usar alguno de esos programas que optimizan los downloads en Internet, busquen en las herramientas de internet de http://www.superarchivos.com o en http://www.winfiles.com que seguro encontrarán algunos como Download Acelerator o GetRight que son muy buenos y permiten bajar archivos un rato cada vez que nos conectamos a Internet y así aprovechar el tiempo de conexión.



La forma más fácil de empezar, es tener ya instalada alguna versión de JAVA para que sólo tengamos que actualizar archivos y nos quede todo configurado.POR EJEMPLO: % cd /usr/local NO ES NECESARIO CREAR UN DIRECTORIO, YA QUE AL DESCOMPRIMIR SE CREARAN TODOS LOS NECESARIOS
% tar xvzf jdk1_2_2-linux-i386.tar.gz O BIEN: % gunzip jdk1_2_2-linux-i386.tar.gz % tar xvf jdk1_2_2-linux-i386.tar
PARA EL shell C (csh), EDITAR EL ARCHIVO DE INICIO (~/.cshrc): set path=(/usr/local/jdk1.2.2/bin $path) PARA ksh, bash or sh EDITAR EL ARCHIVO (~/.profile): PATH=/usr/local/jdk1.2.2/bin:$PATH
Microsoft(R) Windows 98
(C)Copyright Microsoft Corp 1981-1998.
Gus~Z:\source>javac
Usage: javac <options> <source files>
where <options> includes:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-O Optimize; may hinder debugging or enlarge class files
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are used
-classpath <path> Specify where to find user class files
-sourcepath <path> Specify where to find input source files
-bootclasspath <path> Override location of bootstrap class files
-extdirs <dirs> Override location of installed extensions
-d <directory> Specify where to place generated class files
-encoding <encoding> Specify character encoding used by source files
-target <release> Generate class files for specific VM version
Gus~Z:\source>
|