From: Kyle Lee on
I am trying to include a separate java executable in my program, from
the java installed in windows OS.

Would it be allowed or generate error ?

Detecting which version of java each windows generates its own problem
and wanna see which options I have.

Any help would be helpful.


Thanks


Kyle
From: Arne Vajhøj on
On 30-03-2010 20:41, Kyle Lee wrote:
> I am trying to include a separate java executable in my program, from
> the java installed in windows OS.
>
> Would it be allowed or generate error ?
>
> Detecting which version of java each windows generates its own problem
> and wanna see which options I have.
>
> Any help would be helpful.

Multiple versions of Java can easily coexist. Also on Windows.

Arne
From: John B. Matthews on
In article <4bb2ae82$0$274$14726298(a)news.sunsite.dk>,
Arne Vajhøj <arne(a)vajhoej.dk> wrote:

> On 30-03-2010 20:41, Kyle Lee wrote:
> > I am trying to include a separate java executable in my program, from
> > the java installed in windows OS.
> >
> > Would it be allowed or generate error ?
> >
> > Detecting which version of java each windows generates its own problem
> > and wanna see which options I have.
> >
> > Any help would be helpful.
>
> Multiple versions of Java can easily coexist. Also on Windows.

You can even arrange for a program running in one JVM to launch another.
Non-GUI and GUI, respectively:

<http://groups.google.com/group/comp.lang.java.programmer/msg/99ce4ce118ea2293>
<http://groups.google.com/group/comp.lang.java.programmer/msg/c81f8c5f269e22e5>

--
John B. Matthews
trashgod at gmail dot com
<http://sites.google.com/site/drjohnbmatthews>
From: Roedy Green on
On Tue, 30 Mar 2010 17:41:14 -0700, Kyle Lee <talchum(a)gmail.com>
wrote, quoted or indirectly quoted someone who said :

>I am trying to include a separate java executable in my program, from
>the java installed in windows OS.
>
>Would it be allowed or generate error ?
>
>Detecting which version of java each windows generates its own problem
>and wanna see which options I have.
>
>Any help would be helpful.

You can both have several versions of Java installed on the same
machine, and have several different Java programs running each in its
own independent JVM. They share some DLLs, but that is transparent to
you.
--
Roedy Green Canadian Mind Products
http://mindprod.com

If you tell a computer the same fact in more than one place, unless you have an automated mechanism to ensure they stay in sync, the versions of the fact will eventually get out of sync.
From: Roedy Green on
On Tue, 30 Mar 2010 17:41:14 -0700, Kyle Lee <talchum(a)gmail.com>
wrote, quoted or indirectly quoted someone who said :

>wanna
justa warning. Many people consider this word baby talk and hence
insulting.
--
Roedy Green Canadian Mind Products
http://mindprod.com

If you tell a computer the same fact in more than one place, unless you have an automated mechanism to ensure they stay in sync, the versions of the fact will eventually get out of sync.
 |  Next  |  Last
Pages: 1 2
Prev: Splash screen
Next: String passing question