Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #22963
| Newsgroups | comp.lang.java.programmer |
|---|---|
| Date | 2013-03-16 23:35 -0700 |
| Message-ID | <e782a26a-8dde-4bf7-b6f4-60cbf276cd3a@googlegroups.com> (permalink) |
| Subject | need skeleton for jnlp file |
| From | "Aryeh M. Friedman" <Aryeh.Friedman@gmail.com> |
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 to use the below version if you want:
public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("hello, world");
}
}
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar | Unroll thread
need skeleton for jnlp file "Aryeh M. Friedman" <Aryeh.Friedman@gmail.com> - 2013-03-16 23:35 -0700
Re: need skeleton for jnlp file Joerg Meier <joergmmeier@arcor.de> - 2013-03-17 13:57 +0100
Re: need skeleton for jnlp file Arne Vajhøj <arne@vajhoej.dk> - 2013-03-17 10:48 -0400
Re: need skeleton for jnlp file Roedy Green <see_website@mindprod.com.invalid> - 2013-03-17 10:20 -0700
Re: need skeleton for jnlp file Roedy Green <see_website@mindprod.com.invalid> - 2013-03-17 11:03 -0700
csiph-web