kamaltechworld.wordpress.com
Windows Tips & Tricks – 02 | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2010/03/11/windows-tips-tricks-–-02
Unleash the Power of Knowledge. Windows Tips and Tricks 02. Asymp; Leave a comment. How to speed up opening My Computer. Sometimes we find that it is pretty slow while displaying the drives in My Computer. One of the reasons for it is Image Acquisition Service which runs in the background. so if we disable or make it manual, then it fastens the opening of My Computer. Steps to Disable the Service is. 1 Go to Start - Run , type Services.msc and press enter. Larr; Previous post. Next post →. Notify me of n...
kamaltechworld.wordpress.com
Excel Macro: Send mail using MS Outlook | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2009/07/15/excel-macro-send-mail-using-ms-outlook
Unleash the Power of Knowledge. Excel Macro: Send mail using MS Outlook. Asymp; Leave a comment. Recently my friend had a requirement of sending a mail from Excel, so i helped him to do it with a simple code. This code works if Microsoft Outlook is installed in the machine. Mail using the outlook URL format. URL = "mailto:abc@gmail.com? Subject=Work Request Recieved.&body=You got some work to do". Execute the URL (start the email client). Application.Wait (Now TimeValue("0:00:05"). Larr; Previous post.
kamaltechworld.wordpress.com
Java String | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2009/06/11/java-string
Unleash the Power of Knowledge. Asymp; Leave a comment. Declare two Strings s1 and s2, Initialize them with the same value. So s1 and s2 should be two different objects of String Class But. S1 and s2 both point to the same reference in the Heap, which means. Only one object will exist for "JAVA" and it is referred by s1 and s2. This is called automatic Interning of String. String s1 = "JAVA";. String s2 = "JAVA";. String s1 = "JAVA";. If(s1= s2) System.out.println("Same Instance");. String s1 = "JAVA";.
kamaltechworld.wordpress.com
Java – Execute Jar from Java Code | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2010/03/25/java-execute-jar-from-java-code
Unleash the Power of Knowledge. Java – Execute Jar from Java Code. Asymp; Leave a comment. In java, we can execute a jar in couple of ways. one of the easiest way is to use the Runtime exec method. The Code is as follows. Runtime.getRuntime().exec( “cmd.exe java -jar solr.jar” );. The other way is using ClassLoader. Larr; Previous post. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Email (Address never made public). Windows Tips and Tricks 02.
kamaltechworld.wordpress.com
Levenshtein Distance Algorithm | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2009/06/09/levenshtein-distance-algorithm
Unleash the Power of Knowledge. Asymp; Leave a comment. Levenshtein Distance (or) Edit Distance. Levenshtein distance (LD) is a measure of the similarity between two strings, which we will refer to as the source string (s) and the target string (t). The distance is the number of deletions, insertions, or substitutions required to transform s into t. If s is “test” and t is “test”, then LD(s,t) = 0, because no transformations are needed. The strings are already identical. The Algorithm is as follows.
kamaltechworld.wordpress.com
How String’s SubString works in Java | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2009/06/11/how-strings-substring-works-in-java
Unleash the Power of Knowledge. How String’s SubString works in Java. Asymp; Leave a comment. The example program at the bottom of the page shows this in action. Public class Substring {. Public static void main( String[] args ) {. Substring substring = new Substring();. Private void memoryUsageExample() {. Runtime runtime = Runtime.getRuntime();. Show the base memory load. System.out.println( "Memory Usage (1): " ( runtime.totalMemory() - runtime.freeMemory() ) );. Build a huge String. Builder = null;.
kamaltechworld.wordpress.com
Java Practice – Immutable Object | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/2009/06/09/java-practice-immutable-object
Unleash the Power of Knowledge. Java Practice – Immutable Object. Asymp; Leave a comment. An immutable object is one whose externally visible state cannot change after it is instantiated. The String, Integer, and BigDecimal classes in the Java class library are examples of immutable objects — they represent a single value that cannot change over the lifetime of the object. Mutuable Objects are ones whose state or data can be changed at any point of time. StringBuffer is an example of Mutable object.
kamaltechworld.wordpress.com
kamaltechworld | Unleash the Power of Knowledge
https://kamaltechworld.wordpress.com/author/kamaltechworld
Unleash the Power of Knowledge. Java – Execute Jar from Java Code. Asymp; Leave a comment. In java, we can execute a jar in couple of ways. one of the easiest way is to use the Runtime exec method. The Code is as follows. Runtime.getRuntime().exec( “cmd.exe java -jar solr.jar” );. The other way is using ClassLoader. Windows Tips and Tricks 02. Asymp; Leave a comment. How to speed up opening My Computer. 1 Go to Start - Run , type Services.msc and press enter. Excel Macro: Send mail using MS Outlook.