Getting started: Difference between revisions

From Jstacs
Jump to navigationJump to search
(Undo revision 388 by 220.100.109.134 (talk))
(Undo revision 387 by 216.58.41.195 (talk))
Line 1: Line 1:
It's spooky how clever some ppl are. Thnaks!
__NOTOC__
We recommend to use a [http://en.wikipedia.org/wiki/Software_development_environment software development environment] (SDE) as for instance [http://www.eclipse.org eclipse].
 
== Basic Requirements ==
* Make sure that you have installed [http://java.sun.com/javase/downloads/index.jsp Java] 1.6 or later.
* Download latest version of [http://www.jstacs.de/index.php/Downloads Jstacs].
* Include all <code>jar</code>s (e.g. <code>jstacs-<version>.jar</code>, ...) into your classpath:
** Using a SDE, you have to add the <code>jar</code>s to the Java build path by changing the properties of your project.
** Using command line, you have to compile your program using: <code>javac -cp <JARs> <YourClass>.java</code> where <code><JARs></code> contains the path to all your jar-files.
* Run your program:
** Using a SDE, running jobs depends on the SDE and is often linked with some button.
** Using command line, you have to use <code>java -cp <JARs> <YourClass></code>.
* Under [[Code examples]] you can find examples for how to use and extend Jstacs.
 
== Additional Requirements ==
* If you want to use [http://www.jstacs.de/api/de/jstacs/utils/REnvironment.html REnvironment], you must have a server with a running instance of [http://www.r-project.org/ R] and [http://www.rforge.net/Rserve/ Rserve].
 
* If you want to use [http://www.jstacs.de/api/de/jstacs/utils/UserTime.html UserTime], you must compile <code>de_jstacs_utils_UserTime.c</code> and you must set the library-path (<code>-Djava.library.path</code>) to the directory where the dynamic library resides. For details see the documentation of [http://www.jstacs.de/api/de/jstacs/utils/UserTime.html UserTime].
 
* We use LaTeX to include formulas in our javadoc-comments. To render these as images, you need [http://users.informatik.uni-halle.de/~grau/LaTeXlet/ LaTeXlet].

Revision as of 17:22, 11 May 2011

We recommend to use a software development environment (SDE) as for instance eclipse.

Basic Requirements

  • Make sure that you have installed Java 1.6 or later.
  • Download latest version of Jstacs.
  • Include all jars (e.g. jstacs-<version>.jar, ...) into your classpath:
    • Using a SDE, you have to add the jars to the Java build path by changing the properties of your project.
    • Using command line, you have to compile your program using: javac -cp <JARs> <YourClass>.java where <JARs> contains the path to all your jar-files.
  • Run your program:
    • Using a SDE, running jobs depends on the SDE and is often linked with some button.
    • Using command line, you have to use java -cp <JARs> <YourClass>.
  • Under Code examples you can find examples for how to use and extend Jstacs.

Additional Requirements

  • If you want to use REnvironment, you must have a server with a running instance of R and Rserve.
  • If you want to use UserTime, you must compile de_jstacs_utils_UserTime.c and you must set the library-path (-Djava.library.path) to the directory where the dynamic library resides. For details see the documentation of UserTime.
  • We use LaTeX to include formulas in our javadoc-comments. To render these as images, you need LaTeXlet.