Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #22963 > unrolled thread
| Started by | "Aryeh M. Friedman" <Aryeh.Friedman@gmail.com> |
|---|---|
| First post | 2013-03-16 23:35 -0700 |
| Last post | 2013-03-17 11:03 -0700 |
| Articles | 5 — 4 participants |
Back to article view | Back to comp.lang.java.programmer
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
| From | "Aryeh M. Friedman" <Aryeh.Friedman@gmail.com> |
|---|---|
| Date | 2013-03-16 23:35 -0700 |
| Subject | need skeleton for jnlp file |
| Message-ID | <e782a26a-8dde-4bf7-b6f4-60cbf276cd3a@googlegroups.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");
}
}
[toc] | [next] | [standalone]
| From | Joerg Meier <joergmmeier@arcor.de> |
|---|---|
| Date | 2013-03-17 13:57 +0100 |
| Message-ID | <1th9fh43l5424.nn5z6udcqly7.dlg@40tude.net> |
| In reply to | #22963 |
On Sat, 16 Mar 2013 23:35:56 -0700 (PDT), Aryeh M. Friedman wrote: > 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: Try typing "Webstart tutorial" into Google. Liebe Gruesse, Joerg -- Ich lese meine Emails nicht, replies to Email bleiben also leider ungelesen.
[toc] | [prev] | [next] | [standalone]
| From | Arne Vajhøj <arne@vajhoej.dk> |
|---|---|
| Date | 2013-03-17 10:48 -0400 |
| Message-ID | <5145d7cb$0$32117$14726298@news.sunsite.dk> |
| In reply to | #22963 |
On 3/17/2013 2:35 AM, Aryeh M. Friedman wrote:
> I have a JNLP file that is buggy (long story so don't ask) and I
> wantto 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");
> }
> }
The JNLP is very simple.
Something like:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp href="hello.jnlp">
<information>
<title>Console app JNLP demo</title>
<vendor>Arne</vendor>
</information>
<resources>
<j2se version="1.6+"
href="http://java.sun.com/products/autodl/j2se" />
<jar href="hello.jar" main="true" />
</resources>
<application-desc name="JNLP demo" main-class="HelloWorld">
</application-desc>
</jnlp>
But console apps and JNLP are not that good a combo.
You will need to change config to show Java console to actually
see the output from System.out.println.
Arne
[toc] | [prev] | [next] | [standalone]
| From | Roedy Green <see_website@mindprod.com.invalid> |
|---|---|
| Date | 2013-03-17 10:20 -0700 |
| Message-ID | <9rubk8l3dn3g73em8j3e79vf0o68fkuao6@4ax.com> |
| In reply to | #22963 |
On Sat, 16 Mar 2013 23:35:56 -0700 (PDT), "Aryeh M. Friedman" <Aryeh.Friedman@gmail.com> wrote, quoted or indirectly quoted someone who said : >I have a JNLP file that is buggy (long story so don't ask) and I want to st= >art fresh... to that end can someone send me a "hello, world" (downloads an= >d 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: see http://mindprod.com/jgloss/jnlp.html http://mindprod.com/jgloss/javawebstar.html -- Roedy Green Canadian Mind Products http://mindprod.com The computer programmer is a creator of universes for which he alone is the lawgiver. No playwright, no stage director, no emperor, however powerful, has ever exercised such absolute authority to arrange a stage or a field of battle and to command such unswervingly dutiful actors or troops. ~ Joseph Weizenbaum (born: 1923-01-08 died: 2008-03-05 at age: 85)
[toc] | [prev] | [next] | [standalone]
| From | Roedy Green <see_website@mindprod.com.invalid> |
|---|---|
| Date | 2013-03-17 11:03 -0700 |
| Message-ID | <ja1ck8dct16j1d722v348nvk7g2cf60c0q@4ax.com> |
| In reply to | #22966 |
On Sun, 17 Mar 2013 10:20:57 -0700, Roedy Green <see_website@mindprod.com.invalid> wrote, quoted or indirectly quoted someone who said : >http://mindprod.com/jgloss/javawebstar.html oops http://mindprod.com/jgloss/javawebstart.html -- Roedy Green Canadian Mind Products http://mindprod.com The computer programmer is a creator of universes for which he alone is the lawgiver. No playwright, no stage director, no emperor, however powerful, has ever exercised such absolute authority to arrange a stage or a field of battle and to command such unswervingly dutiful actors or troops. ~ Joseph Weizenbaum (born: 1923-01-08 died: 2008-03-05 at age: 85)
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.java.programmer
csiph-web