Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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 library to handle iCalendar data in Java.
Open source, well-documented implementations with a good object model are preferred. iCal parsing capabilities are less important to me, but still nice to have.
Does anyone have any recommendations?
A challenger appears! Please give biweekly a try. I'm looking for lots of feedback on how it can be improved.
I had limited success with iCal4j (intro) on a project last year.
It seems to be a fairly popular choice for ical work in the java community.
If I remember correctly the API can be slightly confusing at first glance.
However It's pretty solid in the long run.
Good luck,
Brian
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 9 years ago.
Improve this question
This question might not be suitable for this site, but after long search, I have come here to ask experts.
I am going to work with JPEG compression. The library I have to use is Kakadu 2.2. However I haven't found any documentation stating all the functions/methods the library provides like other api do (Android, Windows Phone etc).
So the question is, is there any documentation or list of all functions that I can use for development.
Regards
Since Kakadu is closed source, they don't provide good documentation for free on the internet. If you've purchased their product, you should ask them for a list of functions, or simply peruse the source code where possible.
If you have any choice in the matter then you may be better off with libjpeg as it's free and pretty standard. Then again, I have no idea what you are using this for.
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 am looking for something like jsfiddle but for java, so that code snippets and classes can be shared and tested.
At the moment, I am using a combination of pastebin and compileonline.com. I would rather not sign up for a huge online compiler service, just a quick and dirty code sharing/testing platform, that provides unique URL's for my code snippets.
I have seen other people asking similar questions:
https://stackoverflow.com/questions/15320286/is-there-online-compiler-for-java-like-jsfiddle
But there doesn't seem to be just the right tool. Anyone provide any pointers?
I tried using http://ideone.com/.
It supports a bunch of languages, including Java.
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 can't find any documentation for Jagatoo, except for a single PDF in the doc folder. Is there any at all?
Would make it a lot easier to read about the structure, rather than investigating it all.
Read the source code.
Source code really is the best documentation in the absence of adequate documentation. I find that if I really want to wrap my head around a framework or library, the best thing to do is to dedicate an evening (or weekend, depending) to a proper deep dive of the source code. The added benefit is then that you know exactly where missing functionality needs to go if you want to implement it yourself, and better yet, contribute it back to the Open Source community.
PS I presumed you meant that the PDF on this page is the only one you could find.
You could potentially also look at how Xith3D makes use of JAGaToo.
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've been programming with Perl for a few years and consider myself proficient. I'm now trying to learn Java and am wondering what would be the best route / resource? Any recommendations on website and/or books would be appreciated. thx.
there are lots and lots of books; but one that i found really liking is Thinking in Java. Note that it's about Java the language, not (so much) about the libraries or environment.
Start with the Java Tutorial. http://download.oracle.com/javase/tutorial/
If you want a book, go for Head First Java.
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
Please provide a good, thorough tutorial about Java class loading, focusing on how to extend that mechanism and how to actually work with the extension.
There's obviously Sun's trail which gives you the technical foundations. I find that despite being thirteen years old(!) this JavaWorld article is still a very good place to start - the technicalities of classloading haven't changed much or at all since then, to my knowledge. (Someone please correct this if there have been any important changes since then!).
IBM are usually good for technical Java articles, and they don't disappoint here. O'Reilly also have a more recent article that covers much the same thing but has a pretty diagram in it. :-)
The Mindprod Java Glossary has a good description of what a classloader is and lists tutorials and technical articals at the end of the page.