Dark Horse programmer--java--Gets the number of times an application runs, if more than 5 times, gives the number of times the usage has been registered, and does not run the program again

Source: Internet
Author: User





get the number of times an application runs, if more than 5 times, give the number of times the usage has been registered, and do not run the program again



Import Java.io.file;import java.io.fileinputstream;import java.io.fileoutputstream;import java.io.IOException; Import Java.util.properties;public class Test5 {public static void main (string[] args) throws Exception {Getappcount ();} private static void Getappcount () throws Exception {File File = new file ("C:\\users\\administrator\\desktop\\ Test Folder", " B.txt "), if (!file.exists ()) file.createnewfile (); FileInputStream fis = new FileInputStream (file); Properties Pro = new properties ();p ro.load (FIS); String value = Pro.getproperty ("name"), int count = 0;if (value!=null) {count = Integer.parseint (value), if (count>=5) { Throw  New RuntimeException ("The number of uses has been reached");}} count++;p ro.setproperty ("name", count+ ""); FileOutputStream  fos = new FileOutputStream (file);p ro.store (FOS, ""); Fos.close (); Fis.close ();}}











Dark Horse programmer--java--Gets the number of times an application runs, if more than 5 times, gives the number of times the usage has been registered, and does not run the program again

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.