Thursday, May 22, 2008

does it speed up our internet browser or downloading?

Yahoo Java games will not run under Vista- similar questions have been asked but have been marked as "resolved"- this issue is not resolved.

1. Running 32-bit browser.
2. Latest Java loaded (build 1.6.0_05-b13)
3. Java apps on all other sites work fine.
4. Java console reports the following:

load: class com.yahoo.games.client.chess.ChessNormalApplet not found.
java.lang.ClassNotFoundException: com.yahoo.games.client.chess.ChessNormalApplet
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadCode(Unknown Source)
at sun.applet.AppletPanel.createApplet(Unknown Source)
at sun.plugin.AppletViewer.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
<SNIP>

Any solutions found?
l
Running IE 32-bit.
Just solved it. IE 32-bit.

Added *.yahoo.com to trusted sites in IE options. Don t really like this since it leaves a huge security hole. Since it s only Yahoo that has this issue I m thinking some Java code needs to be changed.

Well on myspace when I go to A persons page I cant listen to there song..It says "Hello- you either have JavaScript turned off or an old version of Macromedia s Flash Player. Click here to get the latest flash player. I updated it- When I go to A music band profile page I can listen to there music...But personal pages the player doesnt come up. How can I fix this?
I went there...It was all ready enabled...It was workin fine earlier...Now its bringin that message up on the page where the music player suppose to be. Its weird band profiles work but personal ones dont for some reason.
I went there...It was all ready enabled...It was workin fine earlier...Now its bringin that message up on the page where the music player suppose to be. Its weird band profiles work but personal ones dont for some reason.

class A
{
void get()
{
System.out.println("A s method");
}}
class C extends A{}
class D extends A
{
void set()
{
System.out.println("D s method");
}}
class ins
{
public static void main(String[] args)
{
A a=new A();
System.out.println(a);
B b=new B();
C c=new C();
D d=new D();
a=d;
a=c;
System.out.print(a);
if(a instanceof D)
System.out.print(a);
if(a instanceof A)
System.out.print(d);
if(a instanceof A)
System.out.print(a);
}}
Can a refer to objects of all A-C-D and what does a refer to at compile time and at runtime. As instanceof statements are resolved at runtime-does this mean that a refers to objects of all A-C-D at runtime because all three instanceof statements return true.Is it also true that a refers to only A at compile time.And why dont we get an output for System.out.print(a) after the line a=c?

No comments: