Tagged Questions
1
vote
1answer
27 views
when django invoking java, why utf-8 chars outputing is not ok?
When I use django, I write a method can be invoked by http:// myhost/XXX/testIndex
def testIndex(request):
res = os.system('java -jar test.HelloWorld' > /tmp/log)
... ...
and the ...
2
votes
1answer
32 views
accessing java class from python using jython
I wrote a class in java which i want to execute in python using jython.
First the error I am getting?
Traceback (most recent call last):
File ...
-3
votes
1answer
54 views
Java vs. Python for Instant Messaging [closed]
I wanted to build a Whatsapp clone. Which language should I go ahead with?
0
votes
1answer
34 views
how to add module of python into java using jython jar
I used Netbeans platform to build my application uasing java languge.I need to invoke some python functions into java class using jython was the only way.
unfortunatly when I tried to run the program ...
0
votes
0answers
17 views
add xml.parsers.expat module in python file using netbeans platform with jython
I built my application in java Netbeans platform and in order to invoke method from python file I used jython jar and import org.python.util.PythonInterpreter to call the functions that I need.
when ...
0
votes
1answer
51 views
calling java classes from python [closed]
Possible Duplicate:
Calling Java from Python
I am not much familiar with java..
but i want to use a java library (3rd party) inside python.?
Lets say I have three libraries.
...
1
vote
0answers
21 views
Advice on generating a sample graph representation (RDF or V-E-V tuples)
I want to generate a sample experimental graph data. I would like to be able to specify
number of edges, nodes and graph topology (DAG, polygraph, ...)
There may be a need to generate millions, likely ...
1
vote
1answer
57 views
Designing format for intermediate data files?
We are dumping a lot of data (in terms of volume than frequency i.e. dumping 100K or > 400MB records at once ) from database to Excel files. The dumping process is currently being performed in Python, ...
3
votes
4answers
77 views
Selenium Webdriver with Java vs. Python
I'm wondering what the pros and cons are of using Selenium Webdriver with the python bindings versus Java. So far, it seems like going the java route has much better documentation. Other than that, it ...
2
votes
3answers
82 views
service or strategy to detect if users enter fake names?
Im searching about services/strategies to detect when entered names in forms are spammy, example: asdasdasd, ksfhaiodsfh, wpoeiruopwieru, zcpoiqwqwea. crazy keyboard inputs.
I am trying akismet is ...
0
votes
1answer
34 views
Java applet post to read zope database
I have a plone/zope application: in this application I put a Java applet to do certain data evaluations. What I need to know is if I can get the applet query the zope database.
As a try I created a ...
-6
votes
0answers
39 views
Develop a backup tool [closed]
I want to develop an backup tool (HDD,Databases,snapshot,Other files ...) for a cross platform with java or python maybe. Can you please guide me where to start ?
Thanks.
1
vote
2answers
59 views
Script to generate other scripts
I am working on this networking project for which I need to create many shell scripts to run tools like "tc", "arp" and "ping" from multiple nodes to multiple nodes at a time. I need to generate ...
0
votes
2answers
85 views
Find all paths between two vertices (nodes) in a graph using Python
I have the following Python code, and it works perfect with the directed graph.
My question is how to modify the code in such way to find all the paths with ignoring the directions of the edges.
For ...
1
vote
1answer
46 views
Plone CMS with JNLP applet
I need to run an applet into a Plone application.
I've developed the applet that runs fine in a test html page on my localhost, but since I'm a Plone/python/zope noob (java developer here) I can't ...