• 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

data transfer from pc to mobile

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!!
Can some one provide details on how to transfer data/files from pc to mobile using usb port using j2me?
 
Saloon Keeper
Posts: 27752
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm afraid it depends on the device. On a really smart device, the unit may actually login as a LAN client, to the target PC would be a network share and you could simply do a file copy.

The next level down would be where the device acquires a TCP/IP socket on the USB interface. In that case, you'd have to have some sort of client program on the mobile and a corresponding server program on the target PC. This is the same basic idea as on smarter devices, except that instead of getting a client program for free, you have to write your own (or find one).

Below that level, you're probably stuck with doing extremely specialized low-level stuff. Fortunately, all the smartphones I've worked with have had at least some basic TCP/IP support.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic