Tagged Questions
5
votes
2answers
566 views
Should I use Jython, JRuby, Beanshell, Groovy, Rhino, or what for this small task?
I have some batch data-manipulation scripts which support a small business website.
The scripts are a "rat's nest" of Perl, Java, and Stored Procedures, which run on a scheduled basis to update data ...
4
votes
2answers
617 views
Can I strictly evaluate a boolean expression stored as a string in Java?
I would like to be able to evaluate an boolean expression stored as a string, like the following:
"hello" == "goodbye" && 100 < 101
I know that there are tons of questions like this on ...
4
votes
3answers
3k views
Beanshell in Ant yielding, “Unable to create javax script engine for beanshell”
Greeting, I'm trying to put some Beanshell script in my Ant build.xml file. I've followed the Ant manual as well as I can but I keep getting "Unable to create javax script engine for beanshell" when ...
3
votes
0answers
76 views
Beanshell will not allow me to add jars to the “default” JRE classloader?
I have a question about Beanshell that I can't find an answer to anywhere. I am only able to run Beanshell scripts in 1 of 2 ways:
Where Classpath is defined before invoking Beanshell and Beanshell ...
3
votes
8answers
376 views
How would someone implement mathematical formulae in Java?
How would someone implement mathematical formulae in Java?
What I mean, the user inputs a string with multiple variables. Like a simple quadratic formula: x^2 + 5x + 10. Or in Java: (Math.pow(x,2)) + ...
3
votes
5answers
368 views
For what types of programming tasks would I consider using beanshell?
Currently researching Bean Shell.
I would like to get some input as to what types of programming tasks I would consider using Bean Shell?
...And what could replace Bean Shell for that task.
Thanks ...
3
votes
2answers
2k views
How do I pass a variable from one Thread Group to another in JMeter
I have a JMeter test with 2 Thread Groups - the first is a single thread (which creates some inventory) and the second has multiple threads (which purchase all the inventory). I use BeanShell ...
3
votes
2answers
971 views
Beanshell catch(ex): Exception or Throwable?
What type of exception is caught by the beanshell catch(ex): Exception or Throwable?.
Example:
try {
.... } catch (ex) { }
2
votes
2answers
580 views
Fastest scripting language for Java?
I'm making a falling sand game in Java. I want users to be able to write their own engine for the game and I thought a scripting language might work for that. I've tried out a small script with jython ...
2
votes
1answer
250 views
Beanshell not equal statement
What is if not equal statement in beanshell ? if this is equal :
if ("myVarValue".equals(vars.get("MY_VARIABLE")))
1
vote
0answers
16 views
newbie using beanshell on google app engine for java
I am very new to Beanshell scripting...I have with me an existing application that uses beanshell...I want to port this app to Google App Engine.
I went to ...
1
vote
1answer
53 views
how to make methods in beanshell?
I made a simple beanshell ide in android using an edittext and a button. When the button is clicked, Interpreter.eval() is called and edittext.getText().toString() is passed in as the parameter. I ...
1
vote
1answer
43 views
Can I pass arguments to a external Beanshell script, sourced from another Beanshell script?
I am trying to figure out how to pass arguments to a second script that I call from an initial script. The Beanshell documentation says nothing about this. Does anyone know how to do this?
// ...
1
vote
1answer
80 views
Beanshell won't load my dynamically added JDBC Driver class?
Using JDK1.6.0_16, I have this simple program where I am trying to get beanshell 2.0b4 to load a .jar dynamically (as the documentation suggests it will do) and I am having no luck. The ...
1
vote
2answers
96 views
Choosing scripting language
I'm trying to choose between groovy and beanshell, I need one that is in active development, is moderately fast, can access/interpret java code and support restriction to which java classes it can ...
1
vote
3answers
190 views
Is there an alternative to BeanShell ? Something like javascript or groovy console for Java?
I was wondering if there is some kind of shell that would just listen to user input (with a line buffer) and run in internally from within main method, including jdk on classpath.
So that it would ...
1
vote
0answers
95 views
How to capture output from Beanshell
I've been using BeanShell to interpret simple files that just do some calculations and then output to the console. Thing is, I want to grab the output. Such that from System.out.println("test"); I can ...
1
vote
2answers
77 views
Beanshell XOR throwing error
When I try to use the xor operator:
if(a ^ b)
I get the following error:
internal Error: unimplemented binary operator
Is there another way to do it in beanshell, or should I just do:
if((a ...
1
vote
3answers
687 views
Can I write to the Beanshell console from Java?
I'm using Beanshell as an embedded debugging tool in my app. It means I can telnet to my app and poke around with its internals while it is running (I typically wrap the telnet session with rlwrap).
...
1
vote
2answers
919 views
JEdit Macro - Open and Save File
I have a JEdit (BeanShell) macro which opens a specific file then immediately saves the file to my c:\temp folder (so that I don't accidentally update the real file).
Here is the bean shell code:
...
0
votes
2answers
36 views
How can I goose bean shell into operating as a math parser?
I am using a Bean Shell interpreter in a for loop like this
for(int i = 0; i <functionSize; i++){
interpreter.set("x", i);
yvalues[i] = (Integer) ...
0
votes
2answers
109 views
Java Beanshell scripting with args[] to the the program?
The Beanshell documentation implies that you can run a script using this format on the command line:
java bsh.Interpreter script.bsh [args]
The only problem with this is that I cannot get it to ...
0
votes
2answers
106 views
JDBC connection with Beanshell
Other similar questions on StackOverflow didn't answer my question in this area. I have this script that doesn't work, and I am wondering how to get it to work:
// beanshell script script.bsh
...
0
votes
0answers
85 views
URL mainpulating i.e a fake URL in ofbiz based on JAVA frame work
I would re-write the letter as following and would also inclue details around what has already been done. See below.
Hi,
We are a company proving ofbiz service to clients overseas and are currently ...
0
votes
1answer
43 views
Resolving tokens in Beanshell
I want to use beanshell (bsh) to evaluate user defined expressions. I want to allow those expressions to have a kind of macro substitution for example:
boolean isTrue = i.eval("@something == 5");
Is ...
0
votes
2answers
375 views
Beanshell jdbc connection
i want to connect to my database using beanshell script. my code works with java but beanshell doesn't work with the same code. Class not found exception will be thrown. does it have other usage or ...
0
votes
1answer
42 views
Is there a Java database API which I can use exclusively from beanshell?
I am coming from the ruby world and want to be able to use Java to interactively create objects and query the database like with IRB. Which Java database APIs work with beanshell?
0
votes
1answer
484 views
How to execute java class from Jmeter
Is there a way to execute java class from jmeter? I've packaged my class with maven assembly and put it in the lib folder of JMETER_HOME. Then I created BSF Listener inside my test case and wrote :
...
0
votes
1answer
53 views
beanshell equivalent of continue
Is there a beanshell equivalent of java continue ? ex :
if(...cond){
dosomething();
continue;
}
If question is not clear I mean continue keyword from this example :
...
0
votes
1answer
224 views
beanshell inner class
i wanted to use my java code as beanshell script but beanshell throws Exception saying class not found in namespace. Isn't there inner class in beanshell or does it have any other usage?
my script ...
0
votes
2answers
134 views
Beanshell java.lang.NoClassDefFoundError
i wrote java code in beanshell but it throws java.lang.NoClassDefFoundError by defining DefaultHandler. I have already imported it, i don't understand why is this exception thrown. My Code looks like ...
0
votes
1answer
71 views
Keeping variables from dying in Beanshell
I'm trying to use Beanshell in a java application to execute "addon" files supplied by a user. Since the "main" code of the addon is called in a repeating loop, some addons need to use global ...
0
votes
2answers
273 views
Anonymous arrays in BeanShell
Is there a syntax for declaring anonymous arrays in BeanShell? I would like to write code analogous to the following:
print(Arrays.asList("cat", "dog"))
but BeanShell fails to find the "asList" ...
0
votes
1answer
98 views
Advice for embedding a Java scripting language for debugging/remote admin
I have a fairly sophisticated server-side application which frequently requires me to see what is going on with its internals to debug and fix problems.
I've therefore embedded a Beanshell instance, ...
0
votes
1answer
487 views
Executing script inside method with BeanShell
I'm not really sure how I can explain this, but here goes:
I want to be able to "insert" some commands into parts of my code which will be loaded from external files. To parse and execute these ...