This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How can I generate a tag cloud in Java, with OpenCloud?
I would like to know if there's an open source library (JAR) available to generate a tag-cloud in Java?
If the output you need should be in HTML you can use OpenCloud: http://sourceforge.net/projects/opencloud/
Related
This question already has answers here:
Android - Create app with pure Java and no XML?
(6 answers)
Closed 9 years ago.
whenever I create an activity in android, XML files are automatically generated. Can I delete them if I do the layout programmatically in Java code ?
Sure... You can do it.
Look this, Layouts.
So, regarding it, we can create our .xml files and then add to our Project.
This question already has answers here:
Javascript parser for Java [closed]
(6 answers)
Closed 9 years ago.
I am looking for some help with parsing JavaScript variables and arrays from a .js file from the web.
Something like Jsoup except it parses JavaScript rather than HTML. Any suggestions on how I could manage something like this?
Starting from Java 1.6 JavaScript parser Rhino is a part of JDK.
Take a look on the official tutorial from Oracle: http://docs.oracle.com/javase/6/docs/technotes/guides/scripting/programmer_guide/
This question already has answers here:
SASS implementation for Java? [closed]
(12 answers)
Closed 8 years ago.
Is there a Java library for compiling SASS files to CSS files on the fly? Note that build tool plugins will not work for our use case. Thanks.
This appears to do the job https://github.com/darrinholst/sass-java. Else a github search generally finds something good.
This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
How to create pdf files on android
I need to create app for exporting text into pdf file. But I don't know how to do it, because I never used it ever. Help me please, give me an example for this task or link for tutorial.
Some libraries in java to acheive this
http://pdfbox.apache.org/
http://itextpdf.com/
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How do you sign a Java Midlet?
How do I sign a Java midlet?
What have you tried ? This is a tutorial readily available on Google (which lists a set of common problems along with the signing process). If this isn't working then it's worth publishing more specific info on what isn't working.