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 need to look at the source code of HashMap.java of JDK version 1.6.0_19.
I searched the web but could not find anywhere.
Any pointers is highly appreciated.
Thanks.
Download that version of the JDK. The source code is provided in a src.zip file.
http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/java/util/HashMap.java
Try here: http://hg.openjdk.java.net/jdk6/jdk6
http://www.docjar.com/html/api/java/util/HashMap.java.html
Agree to the "download jdk", if you want to see it in your eclipse, you can edit it as the source of the jdk, then when you type HashMap, press F3, you will go to the HashMap.java.
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
Is there a wizard like plugin for Eclipse that can generate all design patterns in Java and/or in C++, and it is free to use? I want something like this
I want to make a plugin as my diplomawork, PatternBox, and CodePro I already found.
PatternBox is not full, and CodePro as i understood is a part of a software package.
Seems like the Eclipse plugin from Patternbox is what you are searching for.
Caveat: I have never used it and won't try it out, I don't think is the right idea ...
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 scoured google for a while, but I have been unable to find a source for the javadoc for SVNKit (all I found was someone's year old github mirror of the SVNKit repository). Since the SVNKit website is down, does anyone know where I can either access a copy of the web based javadoc or download the javadoc jars for the latest (stable) version of SVNKit?
Taking advantage of public maven repos (either manual or from your IDE if your project is maven-based):
http://repo1.maven.org/maven2/org/tmatesoft/svnkit/svnkit/1.7.8/svnkit-1.7.8-sources.jar
http://repo1.maven.org/maven2/org/tmatesoft/svnkit/svnkit/1.7.8/svnkit-1.7.8-javadoc.jar
SVNKit site is up and running now, sorry for the inconvenience.
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
Can anyone suggest any java library to use Skype public API?
I have not found Skype4Java or JSkype libraries.
I found skype4java. Yesterday download link was not available, so I thought that the library is not supported. Now everything is fine.
Link for download
Useful article
Thank you all
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 want to compare two text files and want to highlight the differences. Can any one of you help me in doing that thro Java program.
Thanks in advance.
The google-diff-match-path library seems to provide the functionality you need. Here's a demo of it in action.
In Eclipse right click on filename in navigator bar, then select "Compare With".
Copying one of my answers from a related question:
I would go for netbeans diff api.
How to use the diff api in netbeans and,
NetBeans Diff API
From the later url:
Although not a visual implementation, you also have a translation of gnu diff in java.