| Thread | Last Post | Replies |
|
| JUnit and emma | 30 Apr 2009 06:31 GMT | 1 |
I am trying to learn how to use JUnit and emma. I am using JUnit4.5 and I want to check the code coverage my unit tests have achieved. Specifically emma wants a main() in the JUnit test, looking online I found that one can be created thus
|
| testing a dependency on a static function. | 30 Apr 2009 05:07 GMT | 4 |
Suppose that I want to test the dependency of a method on another static method on another class: In Tested.java, Tested.callsF depends on Util.f public class Tested {
|
| http://oyejava.com/tiki-index.php?page=Spring | 30 Apr 2009 01:31 GMT | 2 |
Spring tutorial at http://oyejava.com/tiki-index.php?page=Spring
|
| Java compilation error message. | 29 Apr 2009 15:09 GMT | 4 |
Attempting to write my first java program that accepts user input. When I add the listner events to the code it will not compile. Below is the code along with the error message: Code:
|
| Java Error | 29 Apr 2009 15:05 GMT | 4 |
I got the following error while trying to run a Java program: D:\java\jfc1>c:\j2sdk1.4.2_10\bin\java ira count = 6452, total = 9397 Error occurred during initialization of VM
|
| Java Error | 29 Apr 2009 15:04 GMT | 3 |
I don't have any knowledge of Java, but hope someone can give me some advice on a site I'm trying to use. The site is for monitoring a chiller and I should be able to access the chiller controls etc. I can get a mimic page but the rest just site there
|
| execute when thread dies | 26 Apr 2009 15:35 GMT | 1 |
How can I define code to be executed when a thread dies? I am extending thread to make my class thread enabled. Greetings,
|
| By Val/By Ref | 20 Apr 2009 22:54 GMT | 7 |
In my coursebook a sentence started with When are argument is passed by value... Then in another When an argument is passed by reference...
|
| How to: rounding two numbers to their mutual precision | 19 Apr 2009 06:03 GMT | 4 |
After performing a computational fluid dynamics study, there are some iterative convergence errors in the results. For example: Mass flow rate at the inlet: 0.00047218065 kg/s
|
| DataInputStream | 19 Apr 2009 04:15 GMT | 4 |
Would anyone please help me to understand why the return value ret is -21 (a negative number 21) Public static void (DataInputStream buf) { DataInputStream dis = new DataInputStream(buf);
|
| How to: referencing variables using the contents of otehr variables. | 17 Apr 2009 03:26 GMT | 30 |
I am using SUN Java, jdk1.6.0_13 Is there a way to reference a variable using the contents of another variable? I have a variable, primitive data type char, that can contain many
|
| JSTL Confusion with <c:set> | 16 Apr 2009 15:47 GMT | 3 |
I have a small loop, and I'm trying to figure out how to increment a counter in a specific way. <c:set var="formCount" value="0"/> <c:forEach begin="1" end="3" var="count">
|
| Date parsing problem | 16 Apr 2009 15:22 GMT | 5 |
I need to parse date and time from a String containing year-month-day hours:minutes:seconds and time zone. The code in the SSCCE below works in java 1.3, but produces a ParseException about unparseable date in java 1.5.
|
| Java webserver monitor. | 16 Apr 2009 09:30 GMT | 2 |
I am looking for a simple Javascript that I can embed in a webpage that will monitor several websites to ensure that they are active. I beleive the javascript would have to connect to the specified website and check that it could access a sertain line of text from that website. If ...
|
| how to save at runtime inside external property file | 14 Apr 2009 20:49 GMT | 3 |
In my project I've some properties inside a configuration file, at runtime the gui must give opportunity to change some of the parameters that belong to this configuration file, and save it in a way that the next start
|