我设法通过获取和格式化toString()方法所在的类中的变量来使反射工作。
public class ReadFile {
public int test1 =0;
public String test2 = "hello";
Boolean test3 = false;
int test4 = 1;
public static void main(String[] args) throws IOException{
ReadFile test = new ReadFile();
System.out.println(test);
}
public String toString(){
//Make a string builder so we can build up a string
StringBuilder result = new StringBuilder();
//Declare a new line constant
final String NEW_LINE = System.getProperty("line.separator");
//Gets the name of THIS Object
result.append(this.getClass().getName() );
result.append(" Class {" );
result.append(NEW_LINE);
//Determine fields declared in this class only (no fields of superclass)
Field[] fields = this.getClass().getDeclaredFields();
//Print field names paired with their values
for ( Field field : fields ) {
result.append(" ");
try {
result.append(field.getType() + " ");
result.append( field.getName() );
result.append(": ");
//requires access to private field:
result.append( field.get(this) );
} catch ( IllegalAccessException ex ) {
System.out.println(ex);
}
result.append(NEW_LINE);
}
result.append("}");
return result.toString();
}
}
但是我想知道是否可以在toString()
的目录中指定一个特定文件来处理?
我尝试过在System.out.println()
中获取文件并将其插入,但我看到它的方式是你需要创建一个类的实例并为它提供实例。所以我不确定如何以编程方式完成。
我一直在尝试这样的事情:
Path path = FileSystems.getDefault().getPath("D:\\Directory\\Foo\\Bar\\Test.java", args);
File file = path.toFile();
System.out.println(file);
但是我对它没有太大的了解,我主要看到我是否可以将文件转换为可用的文件,但我不确定我需要做什么!
任何建议都会很棒。
答案 0 :(得分:2)
我认为您需要查看ClassLoader API - 您需要获取一个新的URLClassLoader并要求它将您的.java文件加载到JVM中。然后你可以反思它。
答案 1 :(得分:1)
您可以尝试从文件中读取包信息(D:\ Directory \ Foo \ Bar \ Test.java),然后尝试按名称加载类:
Class.forName(nameOfTheClass)