Java

本类阅读TOP10

·使用MyEclipse开发Struts框架的Hello World!(录像1)
·hibernate配置笔记
·AOP编程入门--Java篇
·linux下Tomcat 5.0.20 与 Apache 2 安装/集成/配置
·在win2003下整合了整合Tomcat5.5+ apache_2.0.53+ mod_jk_2.0.47.dll
·构建Linux下IDE环境--Eclipse篇
·Jsp 连接 mySQL、Oracle 数据库备忘(Windows平台)
·ASP、JSP、PHP 三种技术比较
·Tomcat5.5.9的安装配置
·AWT GUI 设计笔记(二)

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
Think in patten of Java中的一道习题

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

这个问题我曾在论坛上发过,但没有解答。放在这里,给大家看看:
Think in partten of Java 中,关于Dynamic Proxies,有这么一道习题:
Exercise: Use the Java dynamic proxy to create an object that acts as a front end for a simple configuration file. For example, in good_stuff.txt you can have entries like this:
a=1
b=2
c="Hello World"

A client programmer of this NeatPropertyBundle could then write:

NeatPropertyBundle p =
  new NeatPropertyBundle("good_stuff");

System.out.println(p.a);
System.out.println(p.b);
System.out.println(p.c);

The contents of the configuration file can contain anything, with any variable names. The dynamic proxy will either map to the name or tell you it doesn’t exist somehow (probably by returning null). If you set a property and it doesn’t already exist, the dynamic proxy will create the new entry. The toString( ) method should display all the current entries.

我原本想这么实现:
import java.lang.reflect.*;
import java.io.*;

class NeatPropertyBundle extends Proxy{
   NeatPropertyBundle(final String textFileName){
       super(new InvocationHandler(){
                 public Object invoke(Object proxy, Method method, Object[] args){
                   BufferedReader br=new BufferedReader(new FileReader(textFileName));
                   ....../*这里通过method.getName获取要读的字段名,然后到配置文件里读取等等。*/
                  }
            });
 }
}
但我发现题目要求能对NeatPropertyBundle对象取任何成员变量值,而不是方法。变量名称也是任意的,这应该如何实现?
---------------------------------------
论坛上的讨论结果是,这是道错题。看看各位有何意见。




相关文章

相关软件