Silent JDK1.5 & JRE1.5 Installation TipsApril 11th, 2006 Silent installation of Java SDK (Software development kit)
This applies to 32-bit Windows and silent installation of the J2SE Software Development Kit (SDK). JavaTM 2 SDK (J2SDK) installations are built using InstallShield Developer 8.02, which is based on Microsoft Window Installer 2.0.
Guide To Simplified Java Logging using Java Core APIJanuary 17th, 2006 Java comes in with a handy logging package (java.util.logging) which eliminates the need to use external logging packages like Log4J. However it still requires some configuration which makes it cumbersome and repetitive to include in every class.
J2SE 5: New wine in new bottle with old corkMarch 15th, 2005 J2SE stands for Java 2 Standard Edition. The 2 stands for version 2 of the platform.
Java Quiz: Why StringBuilder Should be Used Instead of StringBuffer?August 23rd, 2008 First tell me what is the best way to concatenate large number of String objects? Is it a + b?
Most Java developers know not to use a + b (+ operator) because of huge performance problems, they use StringBuffer instead. In fact I did some tests in the past which confirms this folklore.
Free (Entry Level) Sun Certified Java Associate (SCJA) Certification Exam from Sun MicrosystemsJune 1st, 2005 Sun Microsystems (SUNW), the creator of Java Programming Language, is offering Java Associate (SCJA) Beta Certification Exam freely from June 20 - July 15, 2005. Registration has started from today.
Java SE Goes Beta (Feature Complete). Download Now.February 17th, 2006 Java SE 6 Beta offers the first feature complete version of next major release of the Java SE platform. Sun expects to ship the final release of Java SE 6 in the fall of 2006.
JDK1.5 Downloaded?March 4th, 2004 Update:
Many of you are coming to this link as it is top ranked in google for jdk1.5. Welcome!
Few links of interest judging from your comments:
Download Java Development Kit (contains compiler, interpreter (with just-in-time compiler) and other tools for development and deployment) - This is a must download if you want to learn Java
Java Tutorial - A good introductory tutorial on most Java topics
Thinking in Java - For many it is a favorite book for learning Java.
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.
How To Speedup Java Over 100%August 26th, 2007 Java is used either for long running server side applications / application servers or for running short scripts. Let's look at how you can speed-up both these type of applications.
Java Popularity Statistics (from JavaOne 2008)May 7th, 2008 Sun revealed the following statistics about Java at JavaOne 2008:
1. 90% of Personal Computers on Internet have Java
2.
Gripe: Java blog aggregator: javablogs.comFebruary 16th, 2004 Few Gripes on Java.blogs:
After few days with java.blogs I realized I don't want a few things. For example I am not interested in knowing anything about IDEA releases.
Java EE 6 HighlightsMay 6th, 2008 The key features of Java EE 6 (Java Enterprise Edition version 6) are:
Modular Platform - Java EE 6 introduces profiles targeted for particular segment of users like web developers or mobile developers. Java Profiles allows you to select Java EE 6 features to be included in a profile.
SCJP Sun Certified Programmer for Java 6 Exam 310-065: Review & DownloadAugust 5th, 2009 SCJP Sun Certified Programmer for Java 6 Study Guide an extensive repository of practice questions and answers for exam 310-065. It makes a good guide to describe and prepare for the SCJP exam.
Java Blogger's in IndiaDecember 11th, 2005 I want to create a list of Java blogger's in India or of Indian origin. If you are one please state so with your url in the comment below.
Top 10 Java LiesMarch 6th, 2006 Here are the top ten Java lies I have heard over the years. Feel free to add yours in the comments.
June 9th, 2008 at 10:23 pm
Hi all ,
How to execute the mysql command in linux using the runtime.exec.
example :
String []cmds_slave1={
“/bin/sh”,”mysql test”,
};
p3=Runtime.getRuntime().exec(cmds_slave1);
BufferedReader pr = new BufferedReader(new InputStreamReader(p3.getInputStream()));
System.out.println(”after buFFer stmt”);
String x1;
while ((x1 = pr.readLine()) != null)
{
System.out.println(x1 + ” from mysqllll…”);
}
}catch(Exception e)
{
e.printStackTrace();
}
p3.waitFor();
But i am not getting any output.
Please let me know how to proceed more.
Thanks In Advance.
Prakash
December 23rd, 2008 at 6:36 am
Ist die Java App als “cross-plattform” abhängiges Ausführen?
Oder verstehe ich richtig?
Ich brauche Tipp für automatische Überprüfung:
z:B myapp.jar sucht dein richtiges System wie Windows XP oder Linux Ubuntu 8.04 LTS oder Macintoch OS X Leopard.
Wenn myapp.jar dein richtiges System erkannt hat, dann fährt myapp.jar zur Installation für richtigem System fort.
Ein Tipp: wenn das Programnm auf dem Computer schon installiert, dann soll myapp.jar nicht wiederinstallieren nur hinterlassen? Wie geht es richtig?
Danke für Tipp?
Wegen Tipp für Adobe Air auf dem DVD- oder CD-ROM brauche ich hier, weil ich beseres erfunden habe. wenn der Benutzer z.B. Macintoch OS X Leopard hat, dann legt Benutzer ein DVD oder CD von Adobe Air Developer ( z.B. von meiner Idee )ein, da passiert es nicht. Während hat Macintoch OS X Java Runtime SE. Es gibt kein Problem. myapp.jar wird vom DVD oder CD ausgeführt und sucht richtiges System und soll automatisch installieren.
Danke für meine Idee!
Viele Grüße, SnakeMedia