Welcome to GameHourz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

JVC with Java 6.0 ?

 
   Game Forums (Home) -> VGA Planets RSS
Related Topics:
Contact: Java VGA-Planets Client project - Does anyone here know how to contact either Lars Dam or Nicholas Marriott of the Client on Or, if either of you are reading this, could you please reply? I tried sending them email via the

Question about recycling ships - Hello If i play in a wandering tribes scenario i think about recycling one or two of my starting transwarp super to get their transwarp engines! So my question is: - Will those engines be in my base next turn? - Can i use those..

pilage planet - Is pillage planet a set amount or does it increase with number of

Cloning - Is it possible to build a ship at a star base and clone one at the same place in the same turn?

New Games - New Games Open to all players Game #68: Critical Mass Critical Mass is a PHOST 4 game. This game runs 3 times a week for the 1st 30 turns, then twice a week after that. SoW will also run if all..
Next:  Trainee game setup  
Author Message
twisti4234

External


Since: Feb 24, 2008
Posts: 2



(Msg. 1) Posted: Tue Feb 26, 2008 8:46 am
Post subject: JVC with Java 6.0 ?
Archived from groups: alt>games>vga-planets (more info?)

Anyone knows a way to get it to work ? Maybe one of the older
versions, which I hear still work fine ?

 >> Stay informed about: JVC with Java 6.0 ? 
Back to top
Login to vote
vanderwalt.louis

External


Since: Mar 28, 2008
Posts: 1



(Msg. 2) Posted: Fri Mar 28, 2008 3:41 am
Post subject: Re: JVC with Java 6.0 ? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I would suggest that you uninstall Java 6 and install V5 again. Then
JVC will work fine. Just be sure as to go and change you update
settings so that java does not automaticly update again and override
you "downgrade" (In Windows it's under the Java, Updates icon in your
Control Panel)

The problem is that update 6 makes changes to the controls used in the
Swing Graphic elements used in JVC, so JVC will need to be upgraded to
make it work on Java update 6

twisti4....DeleteThis@googlemail.com wrote:
> Anyone knows a way to get it to work ? Maybe one of the older
> versions, which I hear still work fine ?

 >> Stay informed about: JVC with Java 6.0 ? 
Back to top
Login to vote
twisti4234

External


Since: Feb 24, 2008
Posts: 2



(Msg. 3) Posted: Thu Apr 17, 2008 10:18 am
Post subject: Re: JVC with Java 6.0 ? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Mar 28, 12:41 pm, vanderwalt.lo....DeleteThis@gmail.com wrote:
> I would suggest that you uninstall Java 6 and install V5 again. Then
> JVC will work fine. Just be sure as to go and change you update
> settings so that java does not automaticly update again and override
> you "downgrade" (In Windows it's under the Java, Updates icon in your
> Control Panel)
>
> The problem is that update 6 makes changes to the controls used in the
> Swing Graphic elements used in JVC, so JVC will need to be upgraded to
> make it work on Java update 6
>
> twisti4....DeleteThis@googlemail.com wrote:
> > Anyone knows a way to get it to work ? Maybe one of the older
> > versions, which I hear still work fine ?

No, that's not correct. I have since found and repaired the bug. It
was a problem with the custom class loader (the one that is used to
load the addins), that was coincidentally combated by a bug in Java.
When the Java bug was fixed in 1.6, the bug in the custom class loader
finally surfaced. It was a simple fix though.

For anyone interested:

Open file ClassLoaderObjectInputStream.java (in jvc.util)

Change this:

protected Class resolveClass(ObjectStreamClass desc) throws
IOException, ClassNotFoundException {
Class class = theClassLoader.loadClass(desc.getName());
return class==null ? super.resolveClass(desc) : class;
}

To this:

protected Class resolveClass(ObjectStreamClass desc) throws
IOException,
ClassNotFoundException {
Class clazz = null;
try {
clazz = theClassLoader.loadClass(desc.getName());
} catch (ClassNotFoundException cnfe) {
clazz = super.resolveClass(desc);
}
return clazz;
}

Of course, the latest JVC version still has other problems, such as
the inability to save custom colors.
 >> Stay informed about: JVC with Java 6.0 ? 
Back to top
Login to vote
Display posts from previous:   
   Game Forums (Home) -> VGA Planets All times are: Ekaterinburg, Islamabad, Karachi, Tashkent (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]