Java Development
-
Set content to a file
In this example we shall show you how to set the content to a File. We will make use of…
Read More » -
Get content of a File
With this example we are going to demonstrate how to get the content of a File. We will make use…
Read More » -
touch file using apache commons io example
This is an example of how to touch a file. We will make use of the org.apache.commons.io.FileUtils class, that provides…
Read More » -
Search Lucene Index
package com.javacodegeeks.lucene; import java.io.File; import org.apache.lucene.analysis.SimpleAnalyzer; import org.apache.lucene.document.Document; import org.apache.lucene.queryParser.QueryParser; import org.apache.lucene.search.IndexSearcher; import org.apache.lucene.search.Query; import org.apache.lucene.search.ScoreDoc; import org.apache.lucene.search.TopDocs; import org.apache.lucene.store.Directory;…
Read More » -
Create Lucene Index
package com.javacodegeeks.lucene; import java.io.File; import java.io.FileReader; import java.io.IOException; import org.apache.lucene.analysis.SimpleAnalyzer; import org.apache.lucene.document.Document; import org.apache.lucene.document.Field; import org.apache.lucene.index.IndexWriter; import org.apache.lucene.store.FSDirectory; public class…
Read More » -
Did you mean feature with Apache Lucene Spell-Checker
package com.javacodegeeks.lucene.spellcheck; import java.io.File; import org.apache.lucene.search.spell.PlainTextDictionary; import org.apache.lucene.search.spell.SpellChecker; import org.apache.lucene.store.Directory; import org.apache.lucene.store.FSDirectory; public class SimpleSuggestionService { public static void main(String[]…
Read More » -
Play audio in Applet
In this example we shall show you how to play audio in an Applet. A Java applet is a special…
Read More » -
Draw Image in Applet
With this example we are going to demonstrate how to draw an image in an Applet. A Java applet is…
Read More » -
Get an applet parameter
This is an example of how to get an Applet parameter. A Java applet is a special kind of Java…
Read More » -
Applet lifecycle methods
In this example we shall show you the Applet lifecycle methods. A Java applet is a special kind of Java…
Read More »