Where can I find the actual code (be it java or native) that's executed by:
new URL("http://google.com").openConnection().getOutputStream()
Bonus: how I can debug it from IntelliJ IDEA ?
|
Where can I find the actual code (be it java or native) that's executed by:
Bonus: how I can debug it from IntelliJ IDEA ? |
|||
|
|
|
The URLConnection has a plugin architecture. You can configure different handlers for each protocol. The Sun's default handler for HTTP is
This one in turn uses this class to make HTTP calls,
|
|||
|
|
|
A quick Google reveals this direct link to You should just be able to point Intellij at the source jar, and it'll tie it in automatically. I don't have Intellij at hand at the moment, but it's pretty trivial. |
|||
|
|