Advertisement
Guest User

BatteryLevel https://darylrobotproject.wordpress.com/

a guest
Sep 28th, 2012
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class BatteryLevel {
  2.  
  3.     /**
  4.      * @param args
  5.      */
  6.     public static void main(String[] args) {
  7.        
  8.         Kernel32.SYSTEM_POWER_STATUS batteryStatus = new Kernel32.SYSTEM_POWER_STATUS();
  9.         Kernel32.INSTANCE.GetSystemPowerStatus(batteryStatus);
  10.         System.out.println(batteryStatus);
  11.  
  12.  
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement