How can i get my system configuration?

hi,
i want to get my system configuration.can i get this information from BIOS.is there any possiblity available for accessing BIOS information using java....

Not without using JNI, in which case you're doing the real work in non-Java code anyway.
The question is asked a lot, please google for the answer.

Similar Messages

  • How can I get the system date in mm/dd/yyyy,

    how can I get the system date in mm/dd/yyyy, i need to compare system date with some other date,continuosly using threads,can U plz help me.
    With Some code
    Thanks In advnace
    Mahiiii

    Hi,
    You can use SimpleDateFormat class under java.text package.
    SimpleDateFormat formatter = new SimpleDateFormat("dd-MMM-yy h:mm a z", new Locale());
    //formatter.setTimeZone(timezone);
    String dateTime = formatter.format(new Date());

  • How can i get the system language of machine in script

    Hi,
    During postinstall, i want to install file based on the system language.
    How can i get the system language of machine in script ?
    Thanks,

    Michael Conniff wrote:
    I don't get it: what you posted gives a list of all the languages (and I don't see what awk brings to the party).
    Hmm. On my laptop the first bit gets me the list of languages as they appear in the listing in the International preferences pane:
    (en, de, es, ja, fr, it, nl, sv, nb, da, fi, pt, "zh-Hans", "zh-Hant", ko)
    So I piped that to awk to pull out just the first one (they're ordered just like they are in the prefs pane, with the current language first). But that gives me some extra text:
    (en,
    So I piped that to sed to remove the comma and parenthesis. That gives me the current code, which in my case was "en" (or "de" if I switched the language).
    defaults read -g AppleLocale
    gives me en_GB. So maybe this last is better for you?
    Well, sure, if you want to do it the easy way. But where's the fun in that? Seriously though, I get en_US, which is a more accurate and complete view of my settings...
    charlie

  • How can i get the System Time from the other host

    I want to get the System Time from the other host in the LAN,How can I get the Time using Java.
    Such as I am in WIN 2000 and I have a Unix host in LAN, I want to get unix host System time, How can I do it.

    Open a socket to port 13 and read a string with the time.
    -or-
    Open a socket to port 27 and read 4 bytes that are a network order timestamp
    Assuming that your UNIX machine has those services running, most do

  • How  can i get the system ip address through d2k/oracle

    hi
    how can i get the I.P. address of the System, whether any builtin function is available oracle/d2k.
    please do needful help

    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:510222107880

  • How can I get my system in and out of DOS mode?

    How do I get my system in and out of DOS mode?

    There is no "Dos-Mode" in OSX.
    Guessing that you tried to run an .exe file while in OSX ?
    These are meant to be run in Windows.
    Stefan

  • I lost my connection with my AirPort Base Station when I upgraded to the OS Maverick.  How can I get my system to recognize the base station again?

    I lost my connection with my AirPort Base Station when I upgraded to the OS Maverick.  I can still see the Internet, but the Time Machine cannot backup now because it cannot locate the AirPort base station.  How can I resolve this issue?
    Steps already taken with zero success:
    1. Restarted the AirPort Base Station multiple times.
    2. Restarted the Mac Pro multiple times.
    3. Looked online for AirPort update for 6.3.2 version.
    Other Apple products in my house can still see the AirPort Base Station, however my Mac Pro and Mac Book Pro cannot.
    Please advise.

    That information helps. If you want to use one of the SmartStor's disks as a repository for sharing your iTunes Library, then do not configure that disk as a RAID. Format it with Disk Utility using the Erase tab. Mac OS Extended (Journaled) is the correct choice.
    Connect it to your Time Capsule, then use AirPort Utility to configure access requirements for sharing it on your network. It should appear as a shared volume in the Finder, available to all your Macs as you thought it should.
    I also thought maybe the extra HD space would be added to the existing Airport Disk.  It isn't.
    Correct. There is no way to do that. The only way to increase the capacity of a Time Capsule's hard disk is to replace the Time Capsule (or its disk, if you are amenable to disassembling it) with a larger capacity model.
    If you also want to use the SmartStor as a RAID, that is another story, and you should probably attack that problem separately.

  • How can i get my system name / IP address in JAVA

    Hi i need to get the system name / IP address of the machine where the JAVA program is running. Please help me in this.

    Try this
    java.net.InetAddress addr = java.net.InetAddress.getLocalHost();
    System.out.println(addr.getCanonicalHostName());
    System.out.println(addr.getHostName());
    System.out.println(addr.getHostAddress());Col

  • How can I get the apple configurator to retain a devices settings and apps?

    Hi there all!
    I have an iPhone that already has apps and email settings on it.  I want to use the configurator to stop the device being paired with anything else not allow it to connect to any other Macs.  I've connected it, backed it up, enabled supervision, then deployed the profile.  Through out all of this I never get the option to restore device settings and when I click on edit stored backups, it contains nothing.  With supervsion disabled I can restore the backup but, snag is to disallow pairing it needs to be supervised.
    Also, am I right in thinking that once it's supervised I can't install any apps directly from the device ?
    Sorry if these are really noddy questions :-)  I just want to stop the device from being able to connect to or pair with anything other than my mac.
    Thanks
    Will

    Jpegs can't have transparent areas. Most likely you had layers and were forced to save "as a copy", which means that the image which remains open in PSE is not the jpg. A file saved as a copy makes a copy in the save format, but it's not like save as where you now see the newly saved version instead of the original. The original remains open and unsaved onscreen.

  • How can I getting the system drives list?

    Hello again. I'd like to create a dropdown list with the computer's drives, so you can easily change from one to another without using a "selectDialog" File object. Is it possible?
    Thanks beforehand :)

    Its something I havn't tried.
    On a PC you might be able to use VB/VBS to get the file list, put them in an env so that you can read them from Javascript.
    Here is a bit of code found on the net.
    Set FileSystemObject = CreateObject("Scripting.FileSystemObject")
    Set Drives = FileSystemObject.Drives
    For Each DiskDrive in Drives
    DriveLetter = DiskDrive.DriveLetter
    DriveType = DiskDrive.DriveType
    Select Case DriveType
    Case "0" DriveType = "Unknown type of drive"
    Case "1" DriveType = "Removable drive"
    Case "2" DriveType = "Fixed drive"
    Case "3" DriveType = "Network drive"
    Case "4" DriveType = "CD-ROM drive"
    Case "5" DriveType = "RAM Disk"
    End Select
    WScript.Echo "Drive " & DriveLetter & " is a " & DriveType
    Next
    Set Drives = nothing
    Set FileSystemObject = nothing

  • How can I get system properties?

    Hello,
    How can I get the system properties like %JAVA_HOME% in my java codes, for example, I want to print it like this.
    System.out.println("%JAVA_HOME%");
    but it doesn't work!
    Please give me a hand!

    To pass the Operating system environment variable to the Java "environment variables", you have to explicitely pass them on the command line eg.
    java -Dmyjava.home=%JAVA_HOME% myClass
    then, in your code use
    String JAVA_HOME = System.getProperty ( "myjava.home" );regards,
    Owen

  • How can i get system time and day

    How can i get the system current time and save it into a variable, then get the current day like wednesday and save it into another variable. Can someone teach me how to set this. thanks
    regards,
    albert

    How can i get the system current time and save it
    into a variable, then get the current day like
    wednesday and save it into another variable. Can
    someone teach me how to set this. thanks
    regards,
    alberti've managed to do this but in gui format hope it suites you.
    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    public class time{
         private Container content;
              private JTextField timeField, dateField;
         public static void main (String[]args){
              time t = new time();
              t.TextClockWindow();
              t.showGUI();
         public void TextClockWindow() {
    // Build the GUI - only one panel
    JFrame frame = new JFrame();
    content = frame.getContentPane();
    timeField = new JTextField(6);
    timeField.setFont(new Font("sansserif", Font.PLAIN, 20));
    dateField = new JTextField(6);
    dateField.setFont(new Font("sansserif", Font.PLAIN, 20));
    content.setLayout(new FlowLayout());
    content.add(timeField);
    content.add(dateField);
    // Create a 1-second timer and action listener for it.
    // Specify package because there are two Timer classes
    javax.swing.Timer t = new javax.swing.Timer(1000,new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    Calendar now = Calendar.getInstance();
    int h = now.get(Calendar.HOUR_OF_DAY);
    int m = now.get(Calendar.MINUTE);
    int s = now.get(Calendar.SECOND);
    //String ampm =now.get(Calendar.AM_PM);
    int y =now.get(Calendar.YEAR);
    int mon=now.get(Calendar.MONTH);
    int d=now.get(Calendar.DAY_OF_WEEK);
    dateField.setText(""+y+ ". "+mon+ "."+d);
    timeField.setText("" + h + ":" + m + ":" + s);
    //to dispaly the current date so easily;stvworks
    String rightNow = "" + new Date();
    t.start(); // Start the timer
    }//end constructor
    public void showGUI(){
         JFrame frame = new JFrame("Time Frame.");
              frame.add(content);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
    frame.setResizable(false);
    frame.setVisible(true);

  • How can i get system configuration

    how can i get RAM capacity, Hard disk size,cpu speed and list of all software installed in system, is there any method in java so that i can get all these information without JNI or JNI wrapper , if anybody know please help me
    thanks

    This will work for u
    import java.util.*;
    import java.io.*;
    class SystemTest
         public static void main(String []s)
         Properties pr=new Properties();
         pr=System.getProperties();
         pr.list(System.out);
         System.out.println("\n"+ (Runtime.getRuntime().totalMemory())/(1024*1024) +" M Bytes");
         System.out.println("\n"+ (Runtime.getRuntime().maxMemory())/(1024*1024) +" M Bytes");
    }

  • I am trying to upload a pdf i created to an online system but am getting an error message indicating that my document is not formatted to 8.5x11. How can i get my document to 8.5x11

    I am trying to upload a pdf i created to an online system but am getting an error message indicating that my document is not formatted to 8.5x11. How can i get my document to 8.5x11

    You'll want to fix this via the online system you used to create the PDF.
    If all content mastering and page configuration is done online then that is where you must make a correction to what you did before.
    If a file is uploaded to the online system for processing then you must revisit that file.
    Open the file with its native application and correct page size there.
    If you upload a scanned image to the online system you must configure the scanner software to output the needed page size.
    Be well...

  • How can I get all photos from iPhoto to automatically back up to iCloud from my Mac OSX Version 10.6.8 operating system.  Not enough memory to upgrade.

    How can I get all photos from iPhoto to automatically back up to iCloud from my Mac OSX Version 10.6.8 operating system.  Not enough memory to upgrade.

    You can't.  iCloud is not for general file backup from a Mac. It's for backup up and syncing data between mobile devices and and Macs and  The following is from this Apple document: iCloud: Backup and restore overview.
    iCloud automatically backs up the most important data on your (mobile) device using iOS 5 or later. Once you have enabled Backup on your iPhone, iPad, or iPod touch .....
    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.
    Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    You get 5 GB of free iCloud storage for:
    Photos and videos in the Camera Roll
    Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    App data
    Home screen and app organization
    Messages (iMessage, SMS, and MMS)
    Ringtones
    Visual Voicemails
    But not from a Mac.  If you want to backup your photos and other important files I suggest you get an external hard drive and use  it with Time Machine.
    OT

Maybe you are looking for

  • Exception running FML32 sample app.

    Hi, I configured the WTC with weblogic6.1 and tuxedo7.1. I have two sample services running in tuxedo TOUPPER REVERSE_STRING I compiled the ejb classes provided for simapapp and it ran successfully. However when I try to run the simpFML32 example, I

  • How to set different levels of item permissions (delete one vs. delete all)

    In the help documentation I find: "Manage Content A user with the Manage Content privilege can add, edit, hide, show, share, and delete, any item, portlet, or tab on the page." I find that this is not the case. Manage content gives the user the abili

  • Regarding digital signature in adobe

    hai everybody,                     I am using a signature field in the pdf form in webdynpro. When user enters the signature how can i get that digital signature in webdynpro application .In which format it will be returned . Can u please suggest any

  • Lumia 710 possessed

    I bought a lumia 710 in Feb. of this year for my husband, I was told it was an easy phone to use , and the best . Well, 10 months later, we have had the phone replaced, a new sim card and a master reset and are still ready to hit this phone with a ha

  • Modified files not updating/syncing

    I have CC installed on my work computer and my home computer. Yesterday at work I copied some of PSD files to my CC folder on my work computer in order to work on them at home last night. Got home - files synced perfectly. I opened them right from wh