[3174] in java-interest
development frustrations.
daemon@ATHENA.MIT.EDU (alex matijaca)
Thu Nov 2 08:56:18 1995
Date: Thu, 2 Nov 1995 07:05:50 -0500
To: java-interest@java.sun.com
From: alex matijaca <alex@dztech.com>
I just downloaded the JDK for Windows NT, and re-wrote my one and only
simple app, fired it up with the
Appletviewer, and "lo-and-behold", it worked!! I fired up NetScape 2.0b1j
for NT, re-loaded (with load HTML
file) the same HTML file, and it didn't!! The "N" logo turned somewhat
purplish, which I think means that
it did try to execute the applet... I then fired up WebSite on the NT box,
and reloaded the HTML file with
http://127.0.0.1/first.html , and inconsistently it would work!!!!! The
application is a simple hello world app :
import java.awt.*;
import java.applet.*;
public class first extends Applet {
public void first() {}
public void init() {
resize(100,100);
}
public void paint (Graphics g) {
g.drawString("Hello, world!",50,25);
}
}
The HTML file looks like this :
<HTML>
<HEAD>
<TITLE>Hello, World!</TITLE>
</HEAD>
<BODY>
Say Hi to Everyone:
<APPLET CODE="first" width=100 height=100></APPLET>
</BODY>
</HTML>
My questions are -> I am realy pissed off with Netscape does anyone know
what is wrong.
My second question is -> Is there (or are there any plans) to have a HOTJAVA
browser for NT
that works with the new Beta API.
Regards, Alex.
-
This message was sent to the java-interest mailing list
Info: send 'help' to java-interest-request@java.sun.com