Re: Dynamic modification of CLASSPATH

1998-10-05 Thread peter . pilgrim
So I am afraid you must become one with "ClassLoader" (and maybe also the "SecurityManager") class somewhere a long the line(!). __ Reply Separator _________ Subject: Re: Dynamic modification of CLASSPATH A

Re: Dynamic modification of CLASSPATH

1998-10-03 Thread Kenny Freeman
hatever. > > Or maybe there's a method in ClassLoader which accepts a new > (augmented) classpath. > > Pete > > __________ Reply Separator _ > Subject: Re: Dynamic modification of CLASSPATH >

RE: Dynamic modification of CLASSPATH

1998-10-02 Thread Will Wood
>> There is any way to change the value of CLASSPATH dynamicaly. The Default Classloader doesn't expose a method that allows it to be manipulated. However you can accomplish this by building your own Classloader that incorporates the functionality. There's an excellent reference classloader i

Re: Dynamic modification of CLASSPATH

1998-10-02 Thread peter . pilgrim
_ Reply Separator _____________ Subject: Re: Dynamic modification of CLASSPATH Author: gaolei ([EMAIL PROTECTED]) at lon-mime Date:02/10/98 08:59 You could write your own class loader. Domingo Pinya wrote: > Hi: > >There is any way to change the value of CLASSPATH

Re: Dynamic modification of CLASSPATH

1998-10-02 Thread Richy Gao
You could write your own class loader. Domingo Pinya wrote: > Hi: > >There is any way to change the value of CLASSPATH dynamicaly, that is, > how I can include a new directory into CLASSPATH after my program is > runnning, to instantiate a class that is inside it? > > Thanks. >