dto与po转换类

/**
 * dto与po转换类
 * @author neuq
 *
 */
public class TransUtil {
	/**
	 * dto2po
	 */
	public static void dto2po(Object dto,Object po){
		if(dto==null){
			return;
		}
		Field[] fields=dto.getClass().getDeclaredFields();
		Method methodSet=null;
		Method methodGet=null;
		for(int i=0;i classType=fields[i].getType();
			String setMethod="set"+fieldName.substring(0, 1).toUpperCase()+fieldName.substring(1);
			String getMethod="get"+fieldName.substring(0, 1).toUpperCase()+fieldName.substring(1);
			try {
				methodSet=po.getClass().getMethod(setMethod, classType);
				methodGet=dto.getClass().getMethod(getMethod);
				methodSet.invoke(po, methodGet.invoke(dto));
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} 
		}
	}
	/**
	 * po2dto
	 */
	public static void po2dto(Object po,Object dto){
		if(po==null){
			return;
		}
		Field[] fields=po.getClass().getDeclaredFields();
		Method getMethod=null;
		Method setMethod=null;
		for(int i=0;i classType=fields[i].getType();
			String getMethodName="get"+fieldName.substring(0, 1).toUpperCase()+fieldName.substring(1);
			String setMethodName="set"+fieldName.substring(0, 1).toUpperCase()+fieldName.substring(1);
			try {
				setMethod=dto.getClass().getMethod(setMethodName, classType);
				getMethod=po.getClass().getMethod(getMethodName);
				setMethod.invoke(dto, getMethod.invoke(po));
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} 
		}
	}
}
如果哪位仁兄有更好的方法,请多多指教

你可能感兴趣的:(框架,java)