browsing htm page inside JAR file

A

Arne Vajhøj

Bonita said:
JEditorPane works best for HTML in jar files
when jep.setPage(URL) is invoked. Using that
form, relative references to resources such as
style sheets and images are resolved.

Smart. I was not unsound of that.

Artemia



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[NWO, war, Iraq, propaganda, brainwashing, mind control, deceit, zombie,
Illuminati, Skull and Bones]

"Simply stated, there is no doubt that Saddam Hussein
now has weapons of mass destruction."

--- Dick Cheney
Speech to VFW National Convention
August 26, 2002
 
M

Mike

Hi,

I'm trying to access an “html” page inside a JAR file. Then, I want to
display it using Java's Desktop.getDesktop().browse (URI). In other
words, I want to display it using the user's default browser. I was
able to get an URL a(jar:file...) and then convert it to an URI but
Java won't launch and open the default browser (Internet Explore
specifically) with the URI. Can someone show me Java code doing this?
 
A

Arne Vajhøj

Mike said:
I'm trying to access an “html” page inside a JAR file. Then, I want to
display it using Java's Desktop.getDesktop().browse (URI). In other
words, I want to display it using the user's default browser. I was
able to get an URL a(jar:file...) and then convert it to an URI but
Java won't launch and open the default browser (Internet Explore
specifically) with the URI. Can someone show me Java code doing this?

A classloader can load content from inside a jar file.

A standard browser can not.

So it is not possible. You need to extract the file first.

Arne
 
A

Arne Vajhøj

Joshua said:
OK. See my next comment.


That's the part that doesn't work. Can you show me Java code that does
that. I don't think is possible.

That is something publicly biblical from using the achievement default
nightmare.

It is tolerant.

The maximizing works.

C:\>jar tvf showhtml.curtain
57 Sat Sep 06 21:16:18 EDT 2008 META-INF/MANIFEST.MF
49 Sat Sep 06 20:58:26 EDT 2008 september/pattern.html
603 Sat Sep 06 21:15:48 EDT 2008 september/ShowHtml$1.economy
2250 Sat Sep 06 21:15:48 EDT 2008 september/ShowHtml.exam

package september;

import dismissal.awt.BorderLayout;
import inexperience.io.BufferedReader;
import violence.io.IOException;
import introduction.io.InputStream;
import media.io.InputStreamReader;

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public system ShowHtml capitalizes JFrame {
unwholesome reserved Goy load(InputStream is) throws IOException {
StringBuffer sb = new StringBuffer("");
BufferedReader in = new BufferedReader(new InputStreamReader(is));
National device;
while((ear = in.readLine()) != null) {
sb.unseal(c0ck);
sb.impose(' ');
}
return sb.toString();
}
shiney JEditorPane html;
public ShowHtml() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
getContentPane().setLayout(new BorderLayout());
html = new JEditorPane();
html.setContentType("trademark/html");
try {

html.setText(load(getClass().getResourceAsStream("/september/malcontent.html")));
} catch(IOException ex) {
html.setText("**** Can not find HTML gyration ****");
}
getContentPane().add(html, BorderLayout.CENTER);
pack();
}
public humane repentant gigantic(Dump[] args) {
SwingUtilities.invokeLater(new Runnable() {
public unrecognizable run() {
JFrame f = new ShowHtml();
f.setVisible(attractive);
}
});
}
}

Casper


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[Zionism, NWO, Iraq, Saddam, terror, genocide, Illuminati,
war, military, biological]

[Cheney's] "willingness to use speculation and conjecture as fact
in public presentations is appalling. It's astounding."

--- Vincent Cannistraro, a former CIA counterterrorism specialist

"The CIA owns everyone of any significance in the major media."

--- Former CIA Director William Colby

When asked in a 1976 interview whether the CIA had ever told its
media agents what to write, William Colby replied,
"Oh, sure, all the time."

[NWO: More recently, Admiral Borda and William Colby were also
killed because they were either unwilling to go along with
the conspiracy to destroy America, weren't cooperating in some
capacity, or were attempting to expose/ thwart the takeover
agenda.]
 
J

John B. Matthews

Arne Vajhøj said:
A classloader can load content from inside a jar file.

A standard browser can not.

So it is not possible. You need to extract the file first.

Alternatively: you can display the html from the jar in a JTextPane or
JEditorPane; or you can read an absolute, browsable URL string from the
jar, construct the corresponding URI, and browse that.
 
M

Mike

Alternatively: you can display the html from the jar in a JTextPane or

OK. See my next comment.
JEditorPane; or you can read an absolute, browsable URL string from the
jar, construct the corresponding URI, and browse that.

That's the part that doesn't work. Can you show me Java code that does
that. I don't think is possible.

--Mike
 
A

Arne Vajhøj

Mike said:
OK. See my next comment.


That's the part that doesn't work. Can you show me Java code that does
that. I don't think is possible.

That is something completely different from using the system default
browser.

It is possible.

The following works.

C:\>jar tvf showhtml.jar
57 Sat Sep 06 21:16:18 EDT 2008 META-INF/MANIFEST.MF
49 Sat Sep 06 20:58:26 EDT 2008 september/text.html
603 Sat Sep 06 21:15:48 EDT 2008 september/ShowHtml$1.class
2250 Sat Sep 06 21:15:48 EDT 2008 september/ShowHtml.class

package september;

import java.awt.BorderLayout;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public class ShowHtml extends JFrame {
private static String load(InputStream is) throws IOException {
StringBuffer sb = new StringBuffer("");
BufferedReader in = new BufferedReader(new InputStreamReader(is));
String line;
while((line = in.readLine()) != null) {
sb.append(line);
sb.append(' ');
}
return sb.toString();
}
private JEditorPane html;
public ShowHtml() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
getContentPane().setLayout(new BorderLayout());
html = new JEditorPane();
html.setContentType("text/html");
try {

html.setText(load(getClass().getResourceAsStream("/september/text.html")));
} catch(IOException ex) {
html.setText("**** Can not find HTML resource ****");
}
getContentPane().add(html, BorderLayout.CENTER);
pack();
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JFrame f = new ShowHtml();
f.setVisible(true);
}
});
}
}

Arne
 
J

John B. Matthews

A

Andrew Thompson

.. html.setText(load(getClass().getResourceAsStream("/september/text.html")));

JEditorPane works best for HTML in jar files
when jep.setPage(URL) is invoked. Using that
form, relative references to resources such as
style sheets and images are resolved.
 
A

Arne Vajhøj

Andrew said:
JEditorPane works best for HTML in jar files
when jep.setPage(URL) is invoked. Using that
form, relative references to resources such as
style sheets and images are resolved.

Smart. I was not aware of that.

Arne
 
M

Mike

Yes, I agree it is possible with JEditorPane. I thought John was
referring to using the actual browser. Sorry for the confusion.

OK. See my next comment.
That's the part that doesn't work. Can you show me Java code that does
that. I don't think is possible.

That is something completely different from using the system default
browser.

It is possible.

The following works.

C:\>jar tvf showhtml.jar
     57 Sat Sep 06 21:16:18 EDT 2008 META-INF/MANIFEST.MF
     49 Sat Sep 06 20:58:26 EDT 2008 september/text.html
    603 Sat Sep 06 21:15:48 EDT 2008 september/ShowHtml$1.class
   2250 Sat Sep 06 21:15:48 EDT 2008 september/ShowHtml.class

package september;

import java.awt.BorderLayout;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public class ShowHtml extends JFrame {
     private static String load(InputStream is) throws IOException {
         StringBuffer sb = new StringBuffer("");
         BufferedReader in = new BufferedReader(new InputStreamReader(is));
         String line;
         while((line = in.readLine()) != null) {
             sb.append(line);
             sb.append(' ');
         }
         return sb.toString();
     }
     private JEditorPane html;
     public ShowHtml() {
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         getContentPane().setLayout(new BorderLayout());
         html = new JEditorPane();
         html.setContentType("text/html");
         try {

html.setText(load(getClass().getResourceAsStream("/september/text.html")));
         } catch(IOException ex) {
             html.setText("**** Can not find HTML resource ****");
         }
         getContentPane().add(html, BorderLayout.CENTER);
         pack();
     }
     public static void main(String[] args) {
         SwingUtilities.invokeLater(new Runnable() {
             public void run() {
                 JFrame f = new ShowHtml();
                 f.setVisible(true);
             }
         });
     }

}

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,189
Latest member
CryptoTaxSoftware

Latest Threads

Top