OpenCloud is a Java library that can be used to generate a tag cloud in your website or application.
License
MIT LicenseFollow OpenCloud
Other Useful Business Software
Get Avast Free Antivirus | Your top-rated shield against malware and online scams
Our antivirus software scans for security and performance issues and helps you to fix them instantly. It also protects you in real time by analyzing unknown files before they reach your desktop PC or laptop — all for free.
Rate This Project
Login To Rate This Project
User Reviews
-
Pretty useful. I couple it with cue.language to avoid common words StopWords stopWords = StopWords.guess(s); // cue knows about stop words cue.language.jar for (final String word : new WordIterator(s)) { if (! stopWords.isStopWord(word)) cloud.addTag(word); } As for rendering html, I use a css and generated html that is then fed into sourceforge.net webvector to transform the result into a png. Works great !
-
Very easy to use and efficient framework for creating tag clouds!