-1
votes
1answer
155 views

I want to make a DJ music mixing software(like Virtual DJ) in Java Swing, Is it possible? [closed]

This i am planning for college project and i have 2 months of time. Four main things what i need are listed below. Crossfading feature of the Virtual DJ software. Basically, there will be 2 decks ...
5
votes
1answer
152 views

How does Eclipse detect errors in code

I wonder how Eclipse detects errors in Java code before compiling it. I've found this answer from the Eclipse forums which mentions reconciliation. But that doesn't tell me how it works. Is the ...
2
votes
2answers
887 views

Convert an array of audio bytes in Java to the frequency scale (Fourier Transform)

I would mention that I am not a seasoned programmer (yet). For my final year project I have chosen "Voice Analysis for Security". This would involve having some audio samples of certain individuals, ...
1
vote
2answers
197 views

Find cause of ant failure

I have some ant files that one imports the other. Specifically build.xml imports a project_default.xml. When I try to do a build I get following error: Buildfile: C:\myproject\build.xml ...
6
votes
3answers
185 views

Ant visual analysis?

I have to look into some complicated Ant files which include targets of other Ant files and these others, targets from the original etc. Is there a (visual) tool that helps understand Ant files and ...
1
vote
1answer
347 views

Program(s) for counting tokens in Java and C source files

Does anyone know of any software which is able to count the number of tokens in Java and/or C source files, ideally as the grammar for the languages defines tokens. I have tried searching google for ...
-1
votes
1answer
186 views

Making a video using java code or an open source tool?

I have a script that executes a test case by opening a specific website, let me illustrate this by the following example -: My script opens up the web page www.google.com Enters some text in the ...
2
votes
1answer
551 views

Application Configuration Management Tool

We write a multi-platform (maily Windows and OSX, but also Android and iOS) application for multiple corporate customers. As our product started as "one-platform no-customers", its configuration ...
0
votes
1answer
103 views

Is there any free software which can export java source code to be displayed in html format?

I am finding a free software which can convert whole java project into html format, so that I can jump around between classes and methods definition by a web browser. Of course I can do the same thing ...
1
vote
0answers
40 views

creating portfolio of txt and other files

I have a program (executable) that can produce bunch of files (~100 files) - mix of graphics, portable documents and txt files. I get such results every time I run the software, so that I want to ...
0
votes
1answer
82 views

Tools and Methodologies to Use Free and Open Source Software [closed]

You have an enterprise software project to complete, and you decided that there is no need to reinvent wheel.You researched open source projects and pinpointed the ones which you can use. On the other ...
3
votes
2answers
131 views

Track all Methods and Classes

I have a project with many packages and classes. It is obvious that it will have many Methods too. Currently, i am using Netbeans7.0 IDE. Is there any program, API or way to track all the possible ...
0
votes
6answers
74 views

Generic java bug-estimator

I heard there is software available that you can feed Java-code and it gives you back an indication on where your code is likely to produce unexpected behaviour. However, I cannot find such software, ...
3
votes
1answer
303 views

Displaying nested swing component names/classes at runtime

Does anyone know of existing functionality to visualize the current swing component heirachy of a window at runtime? I am hoping for something equivalent to how firebug lets you inspect the DOM - ...
2
votes
1answer
121 views

Performance analysis of a Multi-theaded Java application

What is the method generally used for doing the performance analysis of a multi-threaded Java application. I need to monitor the utilization of the processor cores.
0
votes
1answer
49 views

What is OSGi and which applications already applied it?

Recently I learn about OSGi and still don't know what is the difference between it and DLL (Dynamic Library Linking in Windows). And will it attract more developers and companies to Java world? And ...
2
votes
2answers
1k views

Dependency Walker for Java?

I am looking for a tool that lists the .class dependencies for a given Java class to run. Kind of like what Dependency Walker does for Windows applications. I am aware of some tools, but they are ...
2
votes
8answers
398 views

Creating Non-Destructive Software

From here I was shocked to learn the massive destructive capabilties of untested software (Read Ariane5 integer overflow and Therac -25). They say that not all software logical conditions can be ...
0
votes
3answers
458 views

Which development environment to use for developing Java EE and EJB 3?

I have to work with a project in which it is mandatory to use Java EE and EJB 3. Can anyone suggest the best development environment for development of these technologies? And any useful links with ...
4
votes
4answers
3k views

Automatically reformat long-lined Java code to 80 columns and still compile?

My apologies if this is a duplicate, I've seen a couple threads on the subject of 80-column code, but didn't see an answer to this specific problem: My team is developing Java code in a couple ...
10
votes
9answers
1k views

Is there a semi-automated way to perform string extraction for i18n?

We have a Java project which contains a large number of English-language strings for user prompts, error messages and so forth. We want to extract all the translatable strings into a properties file ...
3
votes
3answers
581 views

Diff on Java class signatures?

Given two JAR files for the same Java library, is there a tool that will do a diff of the method signatures between the two jar files?
15
votes
8answers
12k views

java package cycle detection: how to find the specific classes involved?

What tool would you recommend to detect java package cyclic dependencies, knowing that the goal is to list explicitly the specific classes involved in the detected 'across-packages cycle' ? I know ...