Java class loader tutorial [closed] - 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.

Related

Is there any good java tutorials for beginner/intermediate coders [closed]

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
does anybody have any beginners java tutorials that they've found useful? I would love to have a few for future reference.
Follow the following Links it will may help you
http://docs.oracle.com/javase/tutorial/
http://www.mkyong.com/
http://www.tutorialspoint.com/java/
see the related video about your query...
http://www.youtube.com/watch?v=ezwJKkf5q0I
Hope it will help...
Check out thenewboston on youtube. He's pretty easy to understand and won't bore you to death like some of the Lynda teachers
http://www.youtube.com/playlist?list=PLFE2CE09D83EE3E28
check java tag info. It has lots of information. And if you find any other useful information do't forget to add that in java info.
Programming, motherfucker has links for Java and many other languages. I go there first whenever I need to learn a language or someone asks for a reference. Picking up a Java edition of any Data Structures & Algorithms textbook can be quite nice too.
edit 1:
Think Java, How to Think Like a Computer Scientist. I've read some other "Think X, How to Think Like a Computer Scientist" and have always been satisfied with them and keep a few (OCaml & Haskell & I think Prolog) as references.

Online Java scratchpad like jsfiddle [closed]

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.

Documentation for Jagatoo [closed]

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.

Java Generics and Collection Reading references [closed]

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
Though i know some working knowledge Generics and Collections and can also say that have some hands on experience about using Collection API.
But when it comes to some Good knowledge about generics i must say i always rely on Google to find my answers.
I am looking for some references to get some in-depth idea about Generics and Collections any online reference material or Book suggestion is most welcome.
I am not sure how constructive this question is, so i am fine if this question get closed in few minutes
This (Angelika Langer's FAQ) is the best place to learn everything you need to know about java generics.
Angelika's generics page is still one of the best references I know; I still refer to it when I forget something (or just don't know).
Entire collection framework by Wikipedia
Oracle documentation about generic.
Learn more.
This book is also good
http://www.amazon.com/Java-Generics-Collections-Maurice-Naftalin/dp/0596527756

Best iCalendar library for Java? [closed]

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

Categories