Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Would like to know which library (open source preferable) should I use to create a desktop app self installer. It should have the below features
Can create installer for both Windows and Mac
We should be able to bundle the JRE along with it
Thank you.
I would suggest you to look at IzPack which has powerful features and the advantages to be free.
not open source but installAnywhere is a good package.
Install4j is yet another important library to be mentioned here
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am supporting a project that uses Java 6 and need to go deep into the Java source (sun.net.www.protocol.http.HttpURLConnection to be precise). However src.zip attached in Java JDK folder does not contain source code for sun.* packages. Is it possible to download the source code I need and if yes - where from?
Do you need the specific sun.* class?
How about grepcode?
http://grepcode.com/search?query=sun.*
You can also find the sun.* code in the jdk sources and download it here:
http://hg.openjdk.java.net/jdk6/jdk6/jdk/file/a0ea2ba34bdd/src/share/classes/com/sun
(I've put a link to jdk6 for you, but you can find any version there, of course)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm not asking for an opinion here - just a fact: is there a plugin, tool, or technique that lets me write classes or at least method bodies directly in bytecode in Java in either Eclipse or IntelliJ, and what is it? I'm not looking for runtime codegen, I want this at compile time.
I found one here: https://plugins.jetbrains.com/plugin/8461-bytecode-editor but there is no download link and I have no idea how to build it (I tried, I really did). But it's basically everything I want.
In .NET I use the excellent IL Support plugin for this, but I haven't found a similar solution for Java.
There is a download link on that page but you don't need to download it directly so that doesn't matter. IntelliJ provides a plugin installer In Settings>Plugins. At the botttom of the Plugins page is a button to 'Browse repositories'
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am starting my final year project and need an SDK for a fingerprint reader. I have a microsoft fingerprint scanner. I am planning to use Java & Eclipse under Windows 8 to develop the project.
If anybody has heard / uses a free SDK I would like to hear from you !
I know only VeriFinger Embedded SDK it's free 30-day Trial.
I decided to go with libfprint in the end. I have it running under Ubuntu 11.10 (12.04 does not work with vmplayer yet) in vmplayer. Works a charm !
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I Want to create a photo dictionary with .jar extension for mobile phones,what is the right tool or language for this purpose ?
I suspect that you would want to write a so called MIDlet using Java ME.
The proper tools include
The Java SDK
Eclipse together with a proper plugin such as EclipseME (or another compliant IDE)
The Sun Wireless Toolkit (WTK) which among other things contains an emulator)
A good step-by-step introduction to writing your first MIDlet can be found here:
http://www.autexier.de/jmau/dev/j2me/j2me.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Are there any fuzzer libraries out there for Java?
I'd like to sprinkle fuzzing capabilities into existing Java web-based automated integration tests. I've done a lot of searching but I'm coming up empty for a library that supports HTTP/S. There are a lot of Python tools, but I'd like to stick with Java since that's what the programmers are using.
JBroFuzz essentially has the fuzzing capabilities I need, but I need an API and they haven't released one yet.
A quick search turned up the javafuzz library.
The people with JBroFuzz have made it possible to use it as a library:
http://www.owasp.org/index.php/OWASP_JBroFuzz_Tutorial#How_to_Use_JBroFuzz_as_a_Fuzzing_Library