As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm searching a small Java based RSS/Feed Generator, something like the FeedCreator.class.php library, any suggestions?, thanks!
There's the Rome framework as well
http://rometools.github.io/rome/
Does RSS and Atom
How about jRSS? It looks promising -- supports generating RSS 2 and is relatively small.
I used an API a few years back called ROME. I thought it was a breeze to set up and get going with.
i used Informa with success. especially useful if you plan to support multiple verison of rss (0.9-2.0) reasonable sized library , well documented.
a quite complete list con be found at http://java-source.net/open-source/rss-rdf-tools
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
For a java project I am working on, I'm looking for a decent open source library of icons to use in the GUI.
I've found several libraries via Google searches, and have not yet found the icon that is 'just right'. I'm interested in any that other developers use, before I start pulling them into my code.
My advise is to try looking at icons for webdesigners, you will get much more results:
http://www.webdesigncore.com/2012/03/09/20-free-gui-icon-sets-for-web-designers/
http://www.hongkiat.com/blog/40-free-and-useful-gui-icon-sets-for-web-designers/
http://ionicons.com
Or obviously the search engines:
http://www.freeiconsweb.com
http://www.iconfinder.com/free_icons
Also, you might prefer building your own font with vector icons:
https://icomoon.io
Hope this helps
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I want to make a tool for creating FSM control circuit simulations. NB! not the ALU part.
Can anyone recommend a good Java API with as much functionality already available as possible? Itll basically be something like a graphical modelling language editor.
The user should be able to make and run stuff like this:
There are a number of Java libraries out there for visualizing graphs. Some that I hear mentioned a lot include:
JUNG
jGraph
GraphVis and Grappa
The following blog has a pretty extensive list of options with commentary and screenshots: http://s6ai.livejournal.com/33969.html
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm looking for an embeddable Java ETL, an Extract Transform Load engine that can be called from Java code.sample code may be useful to help me specific to extraction.
thunks
Scriptella is a good candidate, embedd and straightforward.
Data Pipeline in another option (not free version).
Smooks maybe worthwhile too.
Have you looked into Kettle? You'll find API usage examples here:
http://wiki.pentaho.com/display/EAI/Pentaho+Data+Integration+-+Java+API+Examples
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I am trying to implement machines learning in java or scala environment. Can anybody please recommend me a good library to study and use?
So far, the algorithm that I am going to use will be logistic regression and SVN.
Thanks
Have a look at scala0-recog or if you want a big toolbox then try scalaNLP
There is also a lib build on top of hadoop called Mahout that might help you. It has use cases in distributed computing and parallelization. Hth
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there any library for stemming in java!?
There is an implementation of Porter's stemmer available on his website. The code is not very Java-ish, but it does what it's supposed to, plus it's only a single class.
You might want to look at Apache Lucene. It is generally written to do other things, but it does some stemming as part of its indexing process.
Updated Answer: Porter recommends a later version of what is available on his website. That is Snowball: http://snowball.tartarus.org/ It is essentially a code generator that can generate a Java or C stemmer based on a stemmer specification.