Made a stupid mistake.

Source: Internet
Author: User

/**
* @author KC
*
*/
public class Urlaccessfilter implements Filter {

Private InputStream path;

public void init (Filterconfig filterconfig) throws Servletexception {
}

 public void DoFilter (ServletRequest request, servletresponse response,
   filterchain Filterchain) throws IOException, servletexception {
  system.out.println ("Accessing Hichujian apk");
  path = null;
  system.out.println (path);
  path = This.getclass (). getClassLoader ()
    .getresourceasstream (" Download_count.properties ");
  properties prop = new Properties ();
  fileoutputstream fos = null;
  try {

Prop.load (path);
String Download_number = Prop.getproperty ("number");
System.out.println (Download_number);
Path.close ();
FOS = new FileOutputStream (New File (This.getclass ()
. GetResource ("/"). GetPath ()
+ "download_count.properties"));
int download = Integer.parseint (download_number);
download++;
Prop.setproperty ("Number", string.valueof (download));
Prop.store (FOS, null);
Fos.close ();
/* Filterchain.dofilter (Request, response); */

} catch (Exception e) {
E.printstacktrace ();
}
}

public void Destroy () {
}

}

Made a stupid mistake.

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.