Applet+Servlet,可以考虑。不知道对否。-(:

解决方案 »

  1.   

    对,我记得在Oreilly公司出的图书Java™ Servlet Programming, by Jason Hunter with William Crawford 
    中由议长介绍这个的!Table of Contents
    Copyright 
    Preface 
    Chapter 1: Introduction 
    Chapter 2: HTTP Servlet Basics 
    Chapter 3: The Servlet Life Cycle 
    Chapter 4: Retrieving Information 
    Chapter 5: Sending HTML Information 
    Chapter 6: Sending Multimedia Content 
    Chapter 7: Session Tracking 
    Chapter 8: Security 
    Chapter 9: Database Connectivity 
    Chapter 10: Applet-Servlet Communication 
    Chapter 11: Interservlet Communication 
    Chapter 12: Internationalization 
    Chapter 13: Odds and Ends 
    Appendix A: Servlet API Quick Reference 
    Appendix B: HTTP Servlet API Quick Reference 
    Appendix C: HTTP Status Codes 
    Appendix D: Character Entities 
    Appendix E: Charsets 
    Index 
    Colophon 
    第十章就是!!!呵呵
      

  2.   

    因为SERVLET是多线程的,而你的这个程序要求一个用户请求对应的SERVLET不停的运行,所以就要保证线程安全!(这是注意点)
    其他的应该实现起来不难,只要调用THREAD.CURRENTTHREAD.wait(long a)就可以了!注意要用WAIT不要用SLEEP();
      

  3.   

    when i understand i will tell you.