0
votes
2answers
30 views
How do you get a member of an enum in jython?
enum day{ mon,tue}
enum getday(){
return day;
}
I want to print the day, like "mon" or "tue".
Is it possible?
0
votes
1answer
29 views
Help with JYTHON 2.0 CODE -STRING MANIPULATION and replace
As i have already asked this question
and i have later realized that tool
for which iam writing JYTHON CODES
supports presently on till 2.1 version
as the intepreter is of 2.1 so some of
…
1
vote
2answers
50 views
Get data back from Jython scripts using JSR-223
Hello. I am using Jython 2.5.1 with JSR-223 (i.e. javax.script package) and I expect the last line of the Python script to be returned. For example, after evaluating this script:
class Multiplier:
…
1
vote
4answers
77 views
Is there a Java Scripting Language that Can Work Without Caching? Jython? Groovy? etc?
Hi all,
We have an existing java-based heavyweight project that needed an interactive script interpreter. After a fair amount of research we eventually ended up with Jython, one of the reasons …
0
votes
4answers
83 views
How to Improve Performance and speed
I have written this program for connecting and fetching the data into file, but this program is so slow in fetching . is there is any way to improve the performance and faster way to load the data …
-1
votes
2answers
48 views
Data extraction and manipulation in jython
For a given file
For ex : 11 ,345 , sdfsfsfs , 1232
i need to such above records from a file , read 11 to delimiter and strip the white space and store in the another file , similarly 345 to …
0
votes
1answer
35 views
what is the correct command to search for an exact string ,
i have tried startswith , find , re.sub but all seems to be find that string that matches part of it . iam looking for command which searchs the exact string which iam searching for in a given file.
…
3
votes
9answers
325 views
What is Jython and is it useful at all?
I know Python. When will I need Jython? What are the drawbacks. I assume it is slow? Please detail it out! thanks.
0
votes
1answer
60 views
Replace Multiple lines in Jython
Hi Everyone ,
I have written a small program to replace a set of characters , but i also want two or more replace command in a single program .
Apart from it i also want to add an bracket after …
0
votes
0answers
20 views
What is the easiest way to debug embedded jython in eclipse?
I know I can debug embedded (launched from a Java program) Jython with a remote Pydev debugger. Is there a simpler way to do it?
0
votes
1answer
9 views
Alternative to interrupt_main() in Jython?
Whenever the code thread.interrupt_main() is used in Jython it doesn't actually interrupt the main thread. Any ideas as to alternatives? Code is below:
import threading
import dummy_thread as _thread
…
0
votes
1answer
30 views
Jython How to stop script from thread?
I'm looking for some exit code that will be run from a thread but will be able to kill the main script. It's in Jython but I can't use java.lang.System.exit() because I still want the Java app I'm in …
0
votes
1answer
35 views
How to kill main thread from sub thread in Jython
I have a script that creates a thread which after 60 seconds (this thread) needs to kill the main thread. I`m not sure what command I can use to kill the main thread. I'm using Jython 2.5.1 and …
1
vote
1answer
55 views
Using Jython From Eclipse Plugin
I am having a tough time getting jython to work properly when run from an Eclipse plugin. I have a simple object factory that loads a python module conforming to a Java Interface. All of this works …
0
votes
1answer
32 views
Jython 2.1 __getattr__
I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered:
if __client != None …
