Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: How do I write a java program that controls all the services of the computer

  1. #1
    Junior Member
    Join Date
    Jun 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default How do I write a java program that controls all the services of the computer

    I have an internet center where customers come and use internet for a limited amount of time and pay according to the number of hours or minutes they used Internet. Checking the starting and ending time of a customer is manual and is not convenient. I would like to create a java program that:
    - prevents users from all other services on the windows computers (it's the only program running on the computer when no customer is logged in)
    - from which the customer can send a request to the central server where its starting time is registered
    - stops the customer when the amount of time he requested is over.
    I am beginning to program in java and I want to know where to get started. Any suggestions about an existing software that does the same job is very welcome.
    Thanks,
    Merhawi


  2. #2
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: How do I write a java program that controls all the services of the computer

    I'm really not sure that Java is the tool for the job you described. Java is platform independent and works in a sandbox, which prevents you from doing some of the things you described. You probably can find a way to finagle it with native code, but it's not going to be trivial.
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

Similar Threads

  1. Replies: 6
    Last Post: July 25th, 2014, 05:55 AM
  2. Replies: 8
    Last Post: April 21st, 2013, 08:20 AM
  3. write a java program
    By mohd faizan shekh in forum What's Wrong With My Code?
    Replies: 1
    Last Post: March 9th, 2013, 05:31 PM
  4. Replies: 2
    Last Post: January 25th, 2013, 09:54 PM
  5. Replies: 3
    Last Post: March 1st, 2011, 02:18 PM