- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
抱歉这个问题的长度。我是 Java 的新手,我遇到了一些让我很困惑的事情。我是 Java 的新手,我什至还不知道所有的术语,所以请耐心等待;我有大约 3 年的 PHP 经验(主要是过程,不是 OO),但很少有 Java。我也知道使用 System.out.println 进行调试是错误的方法,但它有效,而且我已经习惯了(如果必须的话,在这里插入关于 PHP 程序员的笑话)。我仍在尝试弄清楚如何使用 NetBeans 调试器。
我正在为使用 Struts (1.x) 的网络应用程序添加一项功能。我遇到的问题似乎是一个方法被声明为希望将 String 传递给它,但是对该方法进行反射表示它需要 String[] (一个字符串数组)。我受到限制,因为我无法真正对应用程序进行重大的结构更改,当然我必须确保我不会破坏当前正在运行的应用程序中的任何内容,所以我正在努力使我的已经存在的内容发生变化。所以,对于这个问题...
这里是声明方法的地方(从这些中删除了许多行以仅显示我希望是相关位的内容):
AEReportBean.java:
public class AEReportBean {
private String selectedDownloadFields = null;
public String getSelectedDownloadFields() {
return selectedDownloadFields;
}
// Note that there is no overloading of this function anywhere, this is the only declaration.
public void setSelectedDownloadFields(String selectedDownloadFields) {
this.selectedDownloadFields = selectedDownloadFields;
}
}
当用户点击表单上的“提交”时,AEReportSubmitAction.java 会处理它:
public class AEReportSubmitAction extends BaseAction {
public ActionForward doExecute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response
) throws Exception {
// This works fine, the paramater is getting passed in the request:
System.out.println("URL parameter: " + request.getParameter("selectedDownloadFields");
AEReportBean bean = new AEReportBean(request.getLocale(), 0);
PropertyUtil.setAllFromRequest(request, bean);
// This prints "Null", meaning the setAllFromRequest line above is failing to set this property.
System.out.println("AEReportSubmitAction.java - bean.getSelectedDownloadFields() after setAllFromRequest: " + bean.getSelectedDownloadFields());
}
}
PropertyUtil.setAllFromRequest() 是魔术和真正问题发生的地方:
public class PropertyUtil {
/**
* Takes all the parameters from the request object and if there's a matching
* mutator method in the bean, sets it
*/
static public void setAllFromRequest(ServletRequest request, Object out) {
// Iterate through all the request parameter names and try to set each one.
for (Enumeration parameterNames = request.getParameterNames(); parameterNames.hasMoreElements();) {
String name = (String) parameterNames.nextElement();
try {
PropertyUtil.setSimpleProperty(out, name, request.getParameter(name));
}
catch (Exception e) {
log.info("Exception while setting properties from the Request. parameterName=" + name, e);
}
}
}
/**
* Sets the property from an object using the object's mutator method.
* Assumes naming conventions for accessor methods
* @param bean the object to get the property from
* @param property the name of the property to obtain
* @param newProperty the object to set
*/
// NOTE: This just seems to be a wrapper for the method below it...
static public void setSimpleProperty(Object bean, String property, Object newProperty) throws Exception {
PropertyUtil.setSimpleProperty(bean, property, newProperty, null);
}
/**
* Sets the property from an object using the object's mutator method.
* Assumes naming conventions for accessor methods
* @param bean the object to get the property from
* @param property the name of the property to obtain
* @param newProperty the object to set
*/
static public void setSimpleProperty(Object bean, String property, Object newProperty, Class type) throws Exception {
// Capitalize the first letter in the property and append "set" to the front
String methodName = "set" + property.substring(0, 1).toUpperCase() + property.substring(1);
Method method;
Class[] parameters;
// If the Type was passed in when this method was called, simply add it to the Class array.
if (type != null) {
parameters = new Class[]{type};
}
// If the Type was not specified, determine the Type's class by calling getClass() on it; that class will be used below to call the appropriate setter method.
else {
parameters = new Class[]{newProperty.getClass()};
}
// Here's the reflection problem...
// Iterate through all the methods in the bean. If the method is named "setSelectedDownloadFields", print out some info about it.
for (Method m : bean.getClass().getMethods()) {
if (m.getName().equals("setSelectedDownloadFields")) {
// newProperty is the incoming data that ultimately comes from the HTML form field.
System.out.println("newProperty.getClass(): " + newProperty.getClass()); // Prints "class java.lang.String"
// Added for Cameron Skinner in comments.
System.out.println("m.toGenericString: " + m.toGenericString()); // Prints "public void com.[company deleted].bean.AEReportBean.setSelectedDownloadFields(java.lang.String[])"
System.out.println("m.getName(): " + m.getName()); // Prints "setSelectedDownloadFields"
System.out.println("parameters:");
for (Class c : m.getParameterTypes()) {
System.out.println("--c.getCanonicalName(): " + c.getCanonicalName()); // Prints "java.lang.String[]"
System.out.println("--c.getName(): " + c.getName()); // Prints "[Ljava.lang.String;"
}
}
}
// And here's where it fails...
try {
System.out.println("bean.getClass(): " + bean.getClass()); // Prints "class com.[company deleted].bean.AEReportBean"
System.out.println("methodName: " + methodName); // Prints "setSelectedDownloadFields"
System.out.println("for (Class p : parameters):");
for (Class p : parameters) {
System.out.println("--p.getCanonicalName(): " + p.getCanonicalName()); // Prints "java.lang.String"
}
// Here it looks for a method called, effectively, AEReportBean.setSelectedDownloadFields(String s), but above we see that reflection is showing it as AEReportBean.setSelectedDownloadFields(String[] s), so the try block fails.
method = bean.getClass().getMethod(methodName, parameters);
}
catch (NoSuchMethodException e) {
// All lines below here also fail until it bombs out with the exception at the bottom...
// If no method can be found, then see if it's a primitive type that
// has been wrapped
Class valueClass = newProperty.getClass();
//System.out.println("valueClass.toString() = " + valueClass.toString());
try {
if (valueClass.equals(Integer.class)) {
method = bean.getClass().getMethod(methodName, new Class[]{int.class});
}
else if (valueClass.equals(Double.class)) {
method = bean.getClass().getMethod(methodName, new Class[]{double.class});
}
else if (valueClass.equals(Long.class)) {
method = bean.getClass().getMethod(methodName, new Class[]{long.class});
}
else if (valueClass.equals(Float.class)) {
method = bean.getClass().getMethod(methodName, new Class[]{float.class});
}
else {
throw new Exception(e.getMessage());
}
}
catch (NoSuchMethodException ex) {
throw new Exception(ex.getMessage());
}
}
// If it had gotten to this point, it would call the method with the appropriate parameters, and the property would be set.
try {
// Now execute the method
method.invoke(bean, new Object[]{newProperty});
}
catch (Exception ex) {
throw new Exception(ex.getMessage());
}
}
}
我真的不知道我在这里错过了什么,但肯定有一些东西。同一页面上的其他 HTML 表单元素可以完美工作。如果需要更多信息,请告诉我。谢谢!
最佳答案
代码结果不会说谎。它基本上是在说明类(class)不是您期望的那样。您的项目的类路径中有多个不同版本的 AEReportBean
类,可能在不同的包中,并且导入了错误的类或在类加载中获得了优先权。在 Netbeans 中执行类型/类搜索以在类路径中按给定名称查找所有类(我不使用 Netbeans,但在 Eclispe 中它是 Ctrl+Shift+T,Netbeans 等效项可能是 Alt+Shift+O )。
更新:另一个可能的原因是 Netbeans 没有在保存源文件时自动构建项目(IDE 应该在构建期间创建/刷新 .class
文件).查看设置中的某处。
关于Java 反射不同意方法声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4494988/
一、反射 1.定义 Java的反射(reflection)机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法(即使是私有的);对于任意一个对象,都能够调用它的任意方法和属性,那么,我
有没有办法从 JavaScript 对象内部获取所有方法(私有(private)、特权或公共(public))?这是示例对象: var Test = function() { // private m
我有一个抽象类“A”,类“B”和“C”扩展了 A。我想在运行时根据某些变量创建这些实例。如下所示: public abstract class A { public abstract int
假设我们在内存中有很多对象。每个都有一个不同的ID。如何迭代内存以找到与某些 id 进行比较的特定对象?为了通过 getattr 获取并使用它? 最佳答案 您应该维护这些对象的集合,因为它们是在类属性
假设我有这个结构和一个方法: package main import ( "fmt" "reflect" ) type MyStruct struct { } func (a *MyS
C#反射简介 反射(Reflection)是C#语言中一种非常有用的机制,它可以在运行时动态获取对象的类型信息并且进行相应的操作。 反射是一种在.NET Framework中广
概述 反射(Reflection)机制是指在运行时动态地获取类的信息以及操作类的成员(字段、方法、构造函数等)的能力。通过反射,我们可以在编译时期未知具体类型的情况下,通过运行时的动态
先来看一段魔法吧 public class Test { private static void changeStrValue(String str, char[] value) {
结构体struct struct 用来自定义复杂数据结构,可以包含多个字段(属性),可以嵌套; go中的struct类型理解为类,可以定义方法,和函数定义有些许区别; struct类型是值类型
反射 1. 反射的定义 Java的反射(reflection)机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;对于任意一个对象,都能够调用它的任意方法和属性,既然能拿到那么,我们
反射的定义 java的反射(reflection) 机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;对于任意一个对象,都能够调用它的任意方法和属性,既然能拿到嘛,那么,我们就可以
我有一个 Java POJO: public class Event { private String id; private String name; private Lon
我编写了以下函数来检查给定的单例类是否实现了特征。 /** Given a singleton class, returns singleton object if cls implements T.
我正在研究 Java 反射的基础知识并观察有关类方法的信息。我需要获得一个符合 getMethod() 函数描述的规范的方法。然而,当我这样做时,我得到了一个 NoSuchMethodExceptio
我正在通过以下代码检索 IEnumerable 属性列表: BindingFlags bindingFlag = BindingFlags.Instance | BindingFlags.Public
我需要检查属性是否在其伙伴类中定义了特定属性: [MetadataType(typeof(Metadata))] public sealed partial class Address { p
我正在尝试使用 Reflections(由 org.reflections 提供)来处理一些繁重的工作,因此我不需要在很长的时间内为每个类手动创建一个实例列表。但是,Reflections 并未按照我
scala 反射 API (2.10) 是否提供更简单的方法来搜索加载的类并将列表过滤到实现定义特征的特定类? IE; trait Widget { def turn(): Int } class
我想在运行时使用反射来查找具有给定注释的所有类,但是我不知道如何在 Scala 中这样做。然后我想获取注释的值并动态实例化每个映射到关联注释值的带注释类的实例。 这是我想要做的: package pr
这超出了我的头脑,有人可以更好地向我解释吗? http://mathworld.wolfram.com/Reflection.html 我正在制作一个 2d 突破格斗游戏,所以我需要球能够在它击中墙壁
我是一名优秀的程序员,十分优秀!