English 中文(简体)
java 脱胎工具
原标题:java tool for debugging

目前,我们正在研究主要是报告工具的 Java工具。 它是在2000/2001年期间开发的,使用许多开放源图书馆,如阿帕奇·阿瓦隆/马克斯4J.Adaptor/edu。 Oswego(java并行包装)等。 工具使用jdk 1.3.1,目标是提升为1.5支。 还要求我们删除这些过时的包裹,尽可能用标准的 Java包取代。

不幸的是,我们有可供研究的守则,但缺乏任何文件,而且实际上难以追踪脱硫期间的流量(书写的班级总数可能超过1,000)。

了解这种工具的最佳途径是什么? 了解这几类之间的关系的任何图形工具?

Thanks, SR

问题回答

您可尝试《来源法典》中的一些内容:plugins 至eclipse。 诸如DIVERX-Ray可能有用。

单版(以及更新版的NetBeans和或许是IntelliJ)具有分析大型密码库的好工具:

  • Call hierarchy (CTRL + ALT + H) - you see the hierarchies of calls to/from a given method
  • Type hierarcy (F4) - you see the whole inheritance structure
  • Data hierarchy
  • Right click on item > References
  • many different search options

了解这几类之间的关系的任何图形工具?

If you want to see the relationship between classes you could try Green UML . It creates a nice UML class diagram out of your repository. It works on Eclipse. I hope that helps.

可在Net Beans 查阅。

选择方法签名和新闻ALT+F7(或轮流点击,然后点击“财务使用”),这将显示你从哪里使用某种特定方法。

第二种选择很少引起注意,但可能产生一些结果。 您的项目没收原木4j,并试图在每种方法中给出适当的伐木法。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签