Onbekend |
|
Ik heb nu geporbeert mijn java bestandje online te zetten met deze code:
<applet
codebase = "http://counterterrors.co.funpic.de"
code = "hello.class"
name = "hello"
width = "100"
height = "50"
hspace = "0"
vspace = "0"
align = "middle"
>
</applet>
<applet codebase = "http://counterterrors.co.funpic.de" code = "hello.class" name = "hello" width = "100" height = "50" hspace = "0" vspace = "0" align = "middle" > </applet>
en dit is mijn java bestandje
public class hello {
public static void main(String args[] ) {
System.out.println("Hello World, this is me!");
System.out.println("Wow, nog een regel!");
}
}
public class hello { public static void main (String args [] ) { System.out .println ("Hello World, this is me!"); System.out .println ("Wow, nog een regel!"); } }
er staat altijd loading java aplet failed
|