Recently I installed JDK 6 on my CentOS instance. I noticed a weird service called jexec running on all run levels:
jexec 0:on 1:on 2:on 3:on 4:on 5:on 6:on
Googled and found this installation notes from Sun:
A new service script, named jexec, is added to /etc/init.d. This script allows users to directly execute any standalone JAR file that has an execution permission set.
OK, so it’s for executing jar files.. A tiny little bit more convenient than using java -jar, but no thanks, especially on a server.
One less thing to worry about: chkconfig –level 0123456 jexec off
ssong Java Java, linux, vps
Doing some research on cross platform GUI application libraries. We have a few choices, such as Java, wxWidgets and Qt.
The following applications use wxWidgets, which is a thin wrapper like SWT.
- Dropbox: the hot new kid in the online storage market
- filezilla (used to use MFC and Windows only)
- MadEdit
- JD-GUI: a Java decompiler
- Audacity
- xCHM
According to this post and the official Qt In Use page, these applications use Qt:
- Opera
- Google Earth
- Skype
- Photoshop Elements
- KDE, Qtopia, OPIE
- Mathematica
- VLC media player
In addition, these applications use Qt as well:
In the Java world, we have two choices: Swing and SWT. Swing is light weight; it does its own painting, so it’s easy to change a Swing application’s look and feel, but it may not look native. While SWT is heavy weight: it’s a thin wrapper around OS widgets, so an SWT application looks native to its underlying OS platform. SWT cannot be used in Java applets because of this, but not many people care about applets anyway.
These applications use Swing:
- MagicDraw (uses JIDE)
- DbVisualizer (uses JIDE)
- IntelliJ IDEA
- NetBeans IDE
- FreeMind
- Yong Zhong Office suite
These applications use SWT:
- Azureus: the popular BT client
I’ll update the list when new information becomes available. I’m interested in finding out what’s being used in Google (such as Chrome) and Mozilla (Firefox and Thunderbird).
ssong Software Development cross platform, Software Development, toolkit