欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

代码摘录

程序员文章站 2024-02-02 15:50:04
...
  1. PropertyUtils.getSimpleProperty 用法
import org.apache.commons.beanutils.PropertyUtils;
public static void main(String[] args) {
		String prop = "fA";
		SjjDemoVO t = new SjjDemoVO();
		t.setfA("aaa");
		
		String val = "";
		try {
			val = PropertyUtils.getSimpleProperty(t, prop).toString();			
		} catch (IllegalAccessException | InvocationTargetException
				| NoSuchMethodException e) {
			e.printStackTrace();
		}
		System.out.println("val="+val);
		//console: val=aaa
	}
相关标签: 代码摘录