All Questions
8 questions
0
votes
1
answer
95
views
Problem when trying to execute a java file after compiling with UTF8 encoding
i am currently trying to run a java file in the terminal inside the corresponding package, which i created in eclipse (so its not the default package). However, the problem began after i tried to ...
0
votes
1
answer
480
views
How to run a Java Project in Python?
I have a huge Java Project, which I have to run multiple times and check the output. I am proficient in python, but fairly new to Java and thus I was wondering how to run Java and check outputs in ...
0
votes
1
answer
175
views
How to compile and execute new apache storm scheduler code?
I've modified existing Even Scheduler code in Apache Storm. Later how do I compile and execute this scheduler on a benchmark program and check if there are any changes in metrics?
What config files ...
1
vote
3
answers
8k
views
Execute java code on a server
I'm developping a Web app, a sort of an online IDE to write and compile code. The programming language is developped internally at the university and also the compiler.
My question is : is it ...
0
votes
1
answer
664
views
Why can my Scanner classes compile, but not execute? (Java)
I'm using BlueJ. I have a program that uses the Scanner without any issues in the same project. I have another program that compiles, but does not execute. On the BlueJ project screen it shows "Work ...
0
votes
2
answers
491
views
Compile and execute arbitrary Java string in Android
Is there any way that I can execute arbitrary Java code from a String like Sql.exect(String). Is there something like Java.exect(String). Can anyone point me to a command or simple tutorial?
1
vote
3
answers
243
views
Execute Java example after test and package with Maven
I am trying to run my first Java program, an example script that interacts with a online API (source on Github).
As it has dependencies, I follow the recommended steps using mvn test and mvn package, ...
0
votes
1
answer
135
views
Executing a Number of Classes Java
Currently I have a folder with 6 classes. The main class being called "Interaction".
I compile all the classes by using javac *.java
How do I run the program? When I type "java Interaction" I get ...