Sponsored Content
Full Discussion: Java- What am I missing???
Top Forums UNIX for Dummies Questions & Answers Java- What am I missing??? Post 88659 by cbkihong on Monday 7th of November 2005 07:21:21 PM
Old 11-07-2005
J2SDK already includes the JRE inside (or you will just be able to compile but not run!), so you should not need to download both. You should find everything you need in the J2SDK bundle.

As reborg said, both "java" and "javac" are in $JDK_HOME/bin. $JDK_HOME is the base of the extracted JDK. In my JDK 5.0, the following executables are in the "bin" directory:

Code:
[testcn@bernardchan java]$ cd jdk1.5.0/bin/
appletviewer   java           jdb            keytool        rmic
apt            javac          jinfo          kinit          rmid
ControlPanel   javadoc        jmap           klist          rmiregistry
extcheck       javah          jps            ktab           serialver
HtmlConverter  javap          jsadebugd      native2ascii   servertool
idlj           java-rmi.cgi   jstack         orbd           tnameserv
jar            javaws         jstat          pack200        unpack200
jarsigner      jconsole       jstatd         policytool

 

2 More Discussions You Might Find Interesting

1. SuSE

How to resolve missing missing dependencies with opensuse 11.3 and 12.3?

Hello, This is a programming question as well as a suse question, so let me know if you think I should post this in programming. I have an application that I compiled under opensuse 12.2 using g77-3.3/g++3.3. The program compiles and runs just fine. I gave the application to a colleague who... (2 Replies)
Discussion started by: LMHmedchem
2 Replies

2. Red Hat

Yum - resolving missing dependencies that are not missing

I am trying to install VirtualBox on RHEL 5 but I need the 32 bit version for 32 bit Windows. When I run yum I get the following: sudo yum localinstall /auto/spvtg-it/spvss-migration/Software/VirtualBox-4.3-4.3.2_90405_el6-1.i686.rpm Loaded plugins: fastestmirror Setting up Local Package... (13 Replies)
Discussion started by: gw1500se
13 Replies
rmiregistry(1)						      General Commands Manual						    rmiregistry(1)

NAME
rmiregistry - Java remote object registry SYNOPSIS
rmiregistry [ port ] DESCRIPTION
The rmiregistry command creates and starts a remote object registry on the specified port on the current host. If port number is omitted, the registry is started on port 1099. The rmiregistry command produces no output and is typically run in the background. For example: example% rmiregistry & A remote object registry is a bootstrap naming service that is used by RMI servers on a host to bind remote objects to names. Clients can then look up remote objects and make remote method invocations. The registry is typically used to locate the first remote object on which an application needs to invoke methods. That object in turn pro- vides application-specific support for finding other objects. The methods of the java.rmi.registry.LocateRegistry class are used to get a registry operating on a particular host or host and port. The URL-based methods of the java.rmi.Naming class operate on a registry and can be used to look up a remote object, bind a simple (string) name to a remote object, rebind a new name to a remote object (overriding the old binding), unbind a remote object, and list the URLs bound in the registry. OPTIONS
The following option is supported: -Joption Used in conjunction with any java option, this option passes option (no spaces between -J and option) on to the java inter- preter. SEE ALSO
See (or search java.sun.com) for the following: java.rmi.Naming @ http://java.sun.com/j2se/1.5/docs/api/java/rmi/Naming.html java.rmi.registry.LocateRegistry @ http://java.sun.com/j2se/1.5/docs/api/java/rmi/registry/LocateRegistry.html 23 Apr 2001 rmiregistry(1)
All times are GMT -4. The time now is 01:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy