Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How is AWT implemented for Solaris?
ie: What native libraries, if any, is it dependent on?
For Sun JRE: Old school MToolkit use Motify. From 1.5 I think, there is XToolkit which just use xlib. From memory Solaris kept the MToolkit as the default longer than on Linux. It's switchable with the AWT_TOOLKIT environment variable.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 days ago.
Improve this question
How can jlink be used to create custom runtime and distribute it with the application to users for any platform (Windows/Mac/Linux)?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have a very big project on java and I want to know time and class that JVM calls for debugging purposes.
Use Java VisualVM for profiling the application. See the instructions here.
Also other commercial and non-commercial profilers are available. See this article for more information.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have a Core Java Swing project that I am using with MySQL database.
How to create software setup and how to use MySQL database client?
I used install4j recently for similar purpose. You can refer this tutorial for in detail steps.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
It seems every other week Oracle releases an update for Java and I get this wonderful pop up:
Comparing the amount of updates Java releases to every other software installed on my computer, Java puts out more updates than the rest combined.
Is there a reason for this ? Or are they just trying to be the most updated platform ?
You can see all updates in the change log, for example for the Java 8 Runtime it's available here: http://www.oracle.com/technetwork/java/javase/8all-relnotes-2226344.html
Obviously they aren't fixing bugs for kicks. It's so that there are less errors in the software.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
but of strange question here, but i have an existing windows product developed with .net framework and i want to create an equivalent for java - i don't want to use mono
Java will actually execute on every platform that has a JVm, anyway to lock this down?
I don't want it to be runnable on windows for example.
With regards to mono, i have nothing against it but Java seems to have more compatible libraries. Anyone have any comments on this?
You can use System.getProperty("os.name")to detect the operating system in the main method, then exit the application if it's not what you expect.