Difference between revisions of "Java home"
(input and output streams) |
|||
Zeile 2: | Zeile 2: | ||
=== Links === |
=== Links === |
||
*http://java.sun.com/j2se/codenames.html |
*http://java.sun.com/j2se/codenames.html |
||
+ | |||
+ | == Tips and Tricks == |
||
+ | *[http://ostermiller.org/convert_java_outputstream_inputstream.html input and output streams] |
||
+ | |||
== Rules Engines == |
== Rules Engines == |
Version vom 10:21, 15 April 2007
Inhaltsverzeichnis
Runtime Environments
Links
Tips and Tricks
Rules Engines
Overview
Business Rules Management Systems (BRMS), decision tables (Entscheidungstabellen)
Links
- information
- standards
- implementations
JUnit
Version Info
Manchmal möchte man die Version einer junit-JAR herausbekommen. Das manifest enthält nichts und die Klasse Version keine Main-Methode.
import junit.runner.Version; public class JUnitVersion { public static void main(String[] args) { System.out.println(Version.id()); } }