Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for an open source API allowing to manage events in Java. My needs are to create .ics file that contains one (or many) event(s) in order to synchronise them.
Also it will be very helpfull if this API can manage update (ie : if we can update event that we first create with the same system).
I've used ical4j (https://code.google.com/p/ical4j/) for similar problems some months ago.
This should give you a good start to solve your problem.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a way to automatically extract domain-specific knowledge from unstructured text in Java. We would have a manually annotated training set at our disposal that contains the following:
Text: The apartment contains 2 bedrooms and one bathroom.
Structured
- Type: apartment
- Bedrooms: 2
- Bathrooms: 1
Any idea what's the best way forward to train a model that would be able to perform this job? Possibly a POS-tagger that we extend with custom tags?
Thanks!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
is there a fast way to find all bugfixes between two Java releases?
For example, i want to compare 1.6.0_02 to 1.6.0_30. A list of all fixes would be awesome.
Some kind of comfort tool if this website/links:
http://www.oracle.com/technetwork/java/javase/releasenotes-136954.html
Search for Java changelog in your favorite search engine.
Click on the link to http://www.oracle.com/technetwork/java/javase/releasenotes-136954.html
Click on Changes in 1.6.0_30 to find out what was changed in 1.6.0_30
Repeat for every version you are interested in.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to make a simple REST service that initiates multicasting of a file based on a get request. I really need it to be as lightweight as possible in terms of resources.
Preferably I'd like to have it as a standalone executable jar. Is there such a solution out there?
The simplest I've found so far are RESTX and RestExpress, but they don't appear to be single-jar solutions.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any webpage that holds basic programs, which are using Java SVN kit, that do simple stuff with svn like: co, info, update etc.
I'm reading API, but I need just some simple stuff for beginning.
Thanks!
Um... how bout the SvnKit website which has example code:
SvnKit examples
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have just started using ice4j as an ICE client. I am experimenting with it, and I want to create a simple chat application using it. The problem is, I can't seem to find any good tutorials on how to use ice4j, and the Javadoc I compiled from the source code doesn't seem to help either. I don't want to resort to having to read through all the source code, because that would be annoying. Is there anything that can help me learn ice4j?
Try reading tests, usually it's the best documentation, especially when there's nothing decent about a techlogy