How do I open an html file in java? [duplicate] - java

This question already has answers here:
How to Open HTML file using Java?
(3 answers)
Closed 8 years ago.
I want to open an html file in java from a specific directory. I cannot use Desktop.open() because it is not the default browser, so how else can I do this? Thanks.

You can create a script file say open.bat or open.sh.In your executable file,write the code for opening of HTML file using the preferred browser.
Then use Runtime.getRuntime().exec("open.bat");

Related

How to see what is in a jar file? [duplicate]

This question already has answers here:
Viewing contents of a .jar file [closed]
(31 answers)
Closed 4 years ago.
I would like to see which files are in my jar File.
I've found out that I need to use java -jar
on my CentOS VM. But how do I add the parameters tf.
At the end I have something like: java -jar "MyJarFile.jar" -tf.
When I do it like that the parameters are getting ignored..
You can use decompression software (.jar is just an archive).

How can I display PDF file in java GUI application? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Creating online help in Java Swing application - using pdf user docs
Opening a PDF in a desktop application in Java
I want to add pdf file in GUI form and want to navigate up and down in pdf file. I am using J2SE.
This one should suit your requirements: http://www.icepdf.org/

How to export text into pdf in Java, Android? [duplicate]

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
How to create pdf files on android
I need to create app for exporting text into pdf file. But I don't know how to do it, because I never used it ever. Help me please, give me an example for this task or link for tutorial.
Some libraries in java to acheive this
http://pdfbox.apache.org/
http://itextpdf.com/

making web browser [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Using java to create a web browser
Is there any way to make a webbrower using java?.
if yes pls give the idea about it.
Of course you can make a webbrowser by using java.
You would have to parse the html content of the pages you request.
If you're not interested in creating your own browser, here is a link how to display simple html files.

Tag Cloud library in Java [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How can I generate a tag cloud in Java, with OpenCloud?
I would like to know if there's an open source library (JAR) available to generate a tag-cloud in Java?
If the output you need should be in HTML you can use OpenCloud: http://sourceforge.net/projects/opencloud/

Categories

Resources