A
Aryeh M. Friedman
I have a JNLP file that is buggy (long story so don't ask) and I want to start fresh... to that end can someone send me a "hello, world" (downloads and starts via webstart [itweb-javaws for me] and prints to the command line "hello, world") using the simplest possible jnlp to call it... feel free touse the below version if you want:
public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("hello, world");
}
}
public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("hello, world");
}
}