Javeweb Study notes Two

Source: Internet
Author: User
1. Get Properties by Reflection:
Class:

public class Student {        public Student( ){        System.out.println("public Student()");    }    private void haha(){        System.out.println("private void haha()");    }}

Configuration file

Class.properties

Classname=day01.student
Methodname=haha

Get method

//加载属性文件,取得类名的方法名  Properties props = new Properties();  InputStream is = new FileInputStream("src/Day01/class.properties");props.load(is);  String className = props.getProperty("className").trim();  String methodName = props.getProperty("methodName").trim();  //通过反射,执行该类的方法  Class c = Class.forName(className);  Constructor con = c.getConstructor(null);  Method m = c.getDeclaredMethod(methodName,null);m.setAccessible(true); //方式属性是私有 ,如果是私有必须加上m.invoke(con.newInstance(null),null);

Results:

public Student()private void haha()

Javeweb Study notes Two

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.