• 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

Java USB Api..

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

The problem is like this...
I have a USB drive attached to my computer and i want to access every
information realated to USB using Java application..and also want to perform data transfer...

Can nyone tell me which api are available???
ny sample program will also work for me.....

bye...
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Data transfer should be simple as far as Java is concerned - it's just another drive you can read from and write to.

What do you mean by "information related to USB"? Do you want to write a driver for USB devices?
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can find a Java USB API here: http://jusb.sourceforge.net/

But as Ulf says, if you just want to read or write files from an USB drive, you don't need to use a low level API like this - you can just use the standard I/O classes to read and write files.

Search for "java usb" with Google for more options.
 
Himanshu Rawat
Ranch Hand
Posts: 141
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
no i m nt writing USB driver!!!.

General Information abt USB devices i want have....
reply
    Bookmark Topic Watch Topic
  • New Topic