A dynamic loading widget with Class.forName () helps to understand the application of Class.forName ()

Source: Internet
Author: User
Dynamic has been used in even JDBC Class.forName (), when used to XML dynamic parsing allocation encountered a class name string can not be instantiated as a class name, search and find finally found a solution:
public class dynamicloader{
public static void Main (String args[]) throws exception{
Class Torun = Class.forName (Args[0]);
String[] Newargs=scrubargs (args);
Method Mainmethod = Findmain (Torun);
Mainmethod.invoke (Null,new Object[]{newargs});
}
private static string[] Scruargs (String[],args) {
string[] Toreturn = new String[args.length-1];
for (int i=0;i<args.length;i++) {
Toreturn[i-1]=args[i].tolowercase ();
}
return toreturn;
}
private static Method Findmain (Class clazz) throw exception{
Method[] method = Class.getmethods ();
for (int i=0;i<method.length;i++) {
if (Method[i].getname (). Equals ("main"))
return method[i];
}
return null;
}
}
One more simple test program:
public class echoit{
public static void Main (String args[]) {
for (int i=0;i<args.length;i++) {
System.out.println ("Echo arg" +i+ "=" +args[i]);
}
}
}
After all compiled
Java dynamicloader Echo One two THERE
You can see the effect, both dynamically load echo and pass it three parameters:)

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.