Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
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.
Improve this question
I'm pretty new at Java, but have got some experience with Java SE lately.
Now I wanna begin making applications for mobile, but I can't seem to find any good tutorials of Java ME that is not from 2005 or earlier...
Someone knows about any good beginners tutorials?
Thanks.
i am sending you some good links.
first and most important link:
second one is:
hope it'll help you..
good luck
welcome to the club... J2ME is practically dead so the resources are limited
first of all http://archive.org/web/ will be your best friend to find old pages that are no longer availible ;)
nokia has loads of resourses http://developer.nokia.com/community/wiki/Category:Java_ME
and for GUI there is a really good library called LWUIT
https://lwuit.java.net/
and its blog http://lwuit.blogspot.co.il/
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
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 9 years ago.
Improve this question
I want to develop a plugin for intellij , but I find that the resource about that is very little,and there isn't a book about it ,so anyone know about this resource or book ? thank you very much
This page should help you out:
http://www.jetbrains.com/idea/features/open_api_plugin_manager.html
Essentially you'll need to learn the Open API, which isn't too difficult, and you can visit several of the plugin examples that exist out there to see how others are doing things. Some plugins with source:
https://github.com/kinabalu/mysticpaste/tree/master/idea-plugin
http://blogs.jetbrains.com/idea/2012/10/check-out-more-than-200-open-source-plugins/ (lots of plugin example code here)
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
I want to learn concepts of WebService and like to implement with Java. Please point me a good tutorial for this.
http://download.java.net/maven/2/com/sun/jersey/jersey-documentation/1.0.3/jersey-documentation-1.0.3-user-guide.pdf
Its very easy and good pdf to know overview of RESTFUL...
It covers much many concepts.... :)
http://java.sun.com/webservices/reference/apis-docs/index.jsp
All the tutorials/references/apis/docs from sun about web services
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