Thomas Darimont
Erfahrenes Mitglied
Hallo!
Gruß Tom
Code:
/*
* Created on 28.12.2004@22:57:48
*
* TODO Licence info
*/
package de.tutorials;
import java.beans.Statement;
/**
* @author Administrator
*
* TODO Explain what I do...
*/
public class DynamicCodeExample {
public static void main(String[] args) {
Statement exp = new Statement(System.out, "println",
new Object[] { "tutorials.de -user helfen usern-" });
try {
exp.execute();
} catch (Exception e) {
e.printStackTrace();
}
}
}
Gruß Tom