• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

diffrence between socket connection and URLConnection

 
Ranch Hand
Posts: 64
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hy friends,

though, i know and often work on it but it might be more conceptual for me to know your perception.

by the way, what are the main points which diffrentiate the connection between client and server using

1) sokets which in tern using ClientSocket,ServerSocket... classes
2) URL directly which in tern using HttpURLConnection,URLConnection...classes

any help would greatly appreciated
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

A socket is an endpoint for communication between two machines.


java.net.Socket

Class URL represents a Uniform Resource Locator, a pointer to a "resource" on the World Wide Web. A resource can be something as simple as a file or a directory, or it can be a reference to a more complicated object, such as a query to a database or to a search engine.


java.net.URL

Sockets are low-level connections involving byte streams. URL/URLConnection/HttpURLConnection are abstractions of some protocol (HTTP, FTP).
reply
    Bookmark Topic Watch Topic
  • New Topic