HDD ID

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robert

    HDD ID

    **** Post for FREE via your newsreader at post.usenet.com ****

    Hi,
    Can read the HDD ID in java ? Or, for that matter, any other h/ware info ?
    TIA,
    Robert

    -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    *** Usenet.com - The #1 Usenet Newsgroup Service on The Planet! ***
    Best Usenet Service Providers 2025 ranked by Newsgroup Access Newsservers, Usenet Search, Features & Free Trial. Add VPN for privacy.

    Unlimited Download - 19 Seperate Servers - 90,000 groups - Uncensored
    -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  • Luca Paganelli

    #2
    Re: HDD ID

    I think you can simply write:

    File units[] = File.listRoots( );
    for(int i=0; i<units.length ; i++)
    System.out.prin tln(units[i].getName());



    "Robert" <rob@fx.ro> wrote in message news:40095ca3@p ost.usenet.com. ..[color=blue]
    > **** Post for FREE via your newsreader at post.usenet.com ****
    >
    > Hi,
    > Can read the HDD ID in java ? Or, for that matter, any other h/ware info ?
    > TIA,
    > Robert
    >
    > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    > *** Usenet.com - The #1 Usenet Newsgroup Service on The Planet! ***
    > http://www.usenet.com
    > Unlimited Download - 19 Seperate Servers - 90,000 groups - Uncensored
    > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=[/color]


    Comment

    Working...