How to Compile Java Source within Java ProgramMarch 26th, 2009 This small trick will tell you how you can compile a java source file from another java file on the go. You do not need to run it on a different page and compile it there and then get back to this program.
Three Free Notable Java Software / APISeptember 8th, 2005 GMail API for Java
GMailer API for Java (g4j) is set of API that allows Java programmer to communicate to GMail. With G4J programmers can made Java based application that based on huge storage of GMail.
Controlling native applications using JavaJanuary 24th, 2005 Did you know that you can use Robot to control even native windows. Apparently the code finds the top window generated by the application.
Open Source Java Application Server Geronimo Passes Java 2 Enterprise Edition 1.4 CertificationOctober 19th, 2005 With its latest release of the software, Apache announced that Geronimo 1.0-M5 Java application server has passed all the compatibility tests and has gained official J2EE1.4 certification of the Java server software standard. Apache Geronimo 1.0-M5 is completely integrated with the Tomcat Web server and includes a developer preview of web management console submitted to Apache by IBM.
Free Java Utility To Touch Files (Cross Platform)September 23rd, 2006 This is a simple commandline Java utility which I wrote down in under 5 minutes to help in checking-in (svn commit) over 500 files which were modified but the dates weren't changed due to an error in our settings. So subversion failed to recognize it.
How to Write Java WebStart Application in 5 minutesFebruary 26th, 2009 They say, the best way of learning is to do-it-yourself. When I was assigned to write an article on Java Webstart, I thought to truly understand what's happening with Java Web Start, let's create a program and try to deploy it through any web server.
Free JSP, Servlet Hosting ProviderJune 23rd, 2005 I was a long time user of mycgiserver.com which is the first and only provider of free JSP Hosting that I am aware of. As some of you know it was saved at the last minute by Rick H of JavaLobby fame, who supported continual survival and health of the company.
Java versus PHP versus Python versus Ruby - Job ComparisonApril 5th, 2006 An interesting chart comparing available jobs for these four popular languages - java, php, python and ruby. All of them are extensively used for web application development.
How To Fix - Couldn't find per display information Error in Java ApplicationsJune 23rd, 2008 While running some Java applications (like Thinreader) you may see this strange looking error - Couldn't find per display information. You may find this error when running such applications in JDK 6 or later.
Creating link files (.lnk ) files in windowsJanuary 12th, 2004 Creating link files are necessary for allowing users to easily execute Java programs on windows
Sample VB code to create link files is in http://wss.hypermart.net/vb/shortcut.html
Another option (simpler for the programmer) may be to just create a batch file (.bat) file which the users double-click to run the application (same as a lnk file). Creating it is much simpler.
9 Important Tips for Selenium Remote Control (Java client) - Test ToolApril 16th, 2008 Selenium Remote Control (RC) is a test tool that allows you to write automated web application UI tests in many programming languages against any HTTP website using any mainstream JavaScript-enabled browser. Selenium RC is a powerful and simple framework for running (scheduled or manually) automated UI centric regression tests for web applications / services.
Test Driving Java Studio CreatorJuly 7th, 2005 An excellent article, with screenshots, describing in details the ease of use of Java Studio Creator and JSF (using Java Studio Creator). The author is pretty impressed with the product.
Sun Releases Java Composite Application Platform Suite (Java Caps) 6June 12th, 2008 The Java Composite Application Platform Suite is a collection of middleware software suites using service-oriented architecture for business integration (SOA/BI). Java CAPS is a standard based open source platform for developing software infrastructures using SOA.
Apple Released Java Security Update for Mac OS XApril 19th, 2006 The Java 2 Standard Edition 5.0 Release 4 update, issued Monday, fixes a vulnerability in Java Web Start. An application, exploiting the vulnerability, may grant itself permissions to read and write local files that are accessible to the user running the Java Web Start application.
Java Software Platform J2SE6 (Mustang) Enables System Tray / TaskbarNovember 26th, 2005 Java 2 Platform Standard Edition 6.0 version (Mustang) lets you access the system tray through two classes in the java.awt package: SystemTray and TrayIcon. These classes give you the ability to add graphics, popup menus, and floating tip functionality to the system tray.
November 13th, 2004 at 3:29 am
Very helpful & informative!
November 14th, 2004 at 2:05 pm
http://www.jsresources.org/examples/midi_playback_and_recording.html
November 30th, 2004 at 4:14 pm
It didn’t work for me at the first. I had to replace the order of two lines. After it was perfect. Thanks for the demo.
Original:
sequencer.setSequence(MidiSystem.getSequence(midiFile));
sequencer.open();
sequencer.start();
Modified:
sequencer.open();
sequencer.setSequence(MidiSystem.getSequence(midiFile));
sequencer.start();
November 30th, 2004 at 11:26 pm
Thanks!
This is interesting! I used JDK 1.5 and it compiled and ran fine on my system. Which version of jdk are you using?
Angsuman
May 12th, 2007 at 7:45 am
Man, this is perfect. Very useful.