Tagged Questions
0
votes
3answers
38 views
Issue in invoking shell script in java
I am calling a shell script in java which takes in 2 pameteres.
private void invokeShellScript(String script,String subject,String message)
{
String shellCmd = null;
try
{
...
0
votes
0answers
33 views
In 2013 is there a live scripting plugin for Eclipse?
Over the years there have been a number of ventures to support scripting in Eclipse.
The most successful ones have provided a dedicated Editor plugin to compile & run code in scripting languages. ...
0
votes
2answers
29 views
run java file by shell script - where the java file and shell script are in same package
I have a snmp agent running in my machine, which will run a shell script when a snmpwalk request came to the agent with a particular OID. By
exec TestFile /bin/sh /location/of/file/testShFile.sh
...
0
votes
0answers
42 views
Automate running the runnable java jar using the shell script
I am running a runnable java jar from the command prompt like this-
java -jar CassandraClientReadLnP.jar config.properties
NUMBER_OF_THREADS:10 TOTAL_RUNNING_TIME:30 >
...
1
vote
0answers
40 views
Executing python script from java passing arguments
I Asked some days ago about executing python script from java. It solved my problem partially. But now, I am not able to pass any parameter and make that script to do anything.
My script has to ...
0
votes
2answers
41 views
Substitutes for unix shell commands for windows?
I am developing a source code judging software.I have developed it on Linux platfrom UBuntu 12.04 LTS.
Now i want to deploy it on Windows.
I my software i am creating the commands as per the unix ...
0
votes
1answer
37 views
Why alternatives command is needed when installing Java on a Linux machine
The below command is need when installing Java on a Linux machine (saw the command in a tutorial).
alternatives --install /usr/bin/java java /usr/java/jre1.7.0_01/bin/java 20000
man alternatives ...
0
votes
1answer
35 views
Printing accented characters from a Java program onto a linux shell
I'm running a Java program from command line in Ubuntu, and trying to print accented characters onto the console. But the characters get displayed as ? on the console. How do I make the shell display ...
0
votes
0answers
53 views
error=13, Permission denied while executing script in Java
I have a Java code which on execution will present a GUI button to user, and upon pressing it; a bash script would be executed. My script works on terminal, but when I try to run the script in Java ...
0
votes
0answers
28 views
Calling Screenshot Binary from android app
I want to make an android app for taking screenshots. But not by the usual way of Bitmaps and Drawing Cache and blah blah.
I know there is a binary in /system/bin/ called as screencap.
syntax : ...
-1
votes
0answers
40 views
Writing web terminal emulator as java servlet [closed]
The question is vague but maybe I can get good recommendation.
I want to write terminal emulator interfaced by a browser. As server side I plan to use Java.
So here is one question, what is better to ...
1
vote
0answers
52 views
java - processbuilder - linux - prompt not captured in output stream
linux version: MINT 14
netbeans 7.2
I am pretty recent into programming, and I face this difficulty.
I have a GUI with 2 jtextarea, one where we type commands, one where the commands output goes (a ...
2
votes
2answers
53 views
ClassnotFoundException while running a java class through crontab using unix?
I have written a shell script which has a Demo class having main method.
Now when I am running my shell using ./file.sh .It works fine.
But now I have configured a cronjob to execute that file every ...
1
vote
2answers
93 views
check if process is running linux shell not working
I am having a java process which needs to be always running. I have written the following shell in cron program to check that java process:
if [ `ps aux | grep testjava | grep -v grep | wc -l` -ne 1 ...
1
vote
0answers
129 views
Android shell commands
When I SSH into my android phone and run the command "ps | grep facebook" I get the proper output...
23394 app_25 0:26 com.facebook.katana
23432 app_25 0:02 com.facebook.katana:providers
...
4
votes
4answers
101 views
Is there any Java version manager?
I used to have multiple JDK installed on my Linux machine, and I like to switch from one version to another from the command-line ( I used to change my JAVA_HOME manually):
This is my current ...
-1
votes
2answers
85 views
Runtime's exec() method is not redirecting the output
Process p = Runtime.getRuntime().exec("sh somescript.sh &> out.txt");
I am running this command using Java. The script is running but it's not redirecting its stream to the file. Moreover, ...
0
votes
2answers
52 views
Java won't execute cmd line?
I try to run this shell in java but it never works.
Process p = Runtime.getRuntime().exec(" cat *.java|sed '/import/d'|sed'/package/d'>>b.java ");
When I change the cmd to something like ...
0
votes
0answers
23 views
S3 static resource update on regular basis using JAVA or shell script
I am working on a code which is accessing resources from S3.
The resources here are property files(thousands) which are updated on daily basis.
These are getting checked into SVN. Earlier,
I was ...
-1
votes
0answers
22 views
SVN Checker for JSP files
I want to perform check for some jsp tags. I am having some rule in JAVA and want it to run at the time of committing jsp files with pre-commit hook.
I donot want to use SVN CHECKER instead i want to ...
0
votes
1answer
37 views
Showing the output of a shell script on the browser
This is my first question here,so pardon if somewhere i go wrong.
i am trying to call a shell script on the server from the html page using Ajax.
The Ajax function is calling the java action and this ...
1
vote
1answer
37 views
Usage of ssehexec task in Jenkins build doesn't stop its execution
I have an Ant Task in the Jenkins Ant Execution Plugin, as a Post Build Step, to remotely run a shell script in one of our servers. The shell scripts starts a java process in the background. When I ...
2
votes
2answers
45 views
Can executable shell scripts still be executable after embedding then extracting from a java archive?
I have an application that includes some executable script files. And I know that target machines on which we'll be deploying the application have java. Hence I am packaging the application up in a ...
0
votes
2answers
54 views
how to use Runtime?
I would like to use the commnda given below in java. I used RunTime. but with RunTime i have all the time null as a result.
$ cut -d. -f2,3 <<< com.tata.titi.toto
tata.titi
the method used ...
0
votes
1answer
68 views
use of double quotes when executing a java program in a shell script
I have a shell script that executes a Java program with parameters returned from a different Java program.
java -cp $wekaPath $(java GetFilter $WandFDir) -i $(pwd)/temp/training"$i"_$arffName.arff ...
0
votes
2answers
83 views
java return specific value to shell script
public class Test200 {
public static void main (String args []) {
System.out.println("David");
System.out.println("Peter");
}
}
output=$(java Test200)
echo $output
I get the ...
0
votes
2answers
133 views
How to run rename shell command in android app (rooted)
I'm new to Android. I'm trying to run a shell command to rename a file in the system. I've got root access to it.
The shell command:
$ su
# mount -o remount,rw /system
# mv system/file.old ...
1
vote
1answer
57 views
How to Run Shell Scripts on server using Browser
I am having shell script whose output is output.zip.
i want to Run Shell script on server using browser and download output.zip.
Please suggest me how i can do this, which technology i should use.
0
votes
1answer
54 views
redirect log outputs to another terminal
I have the following script file, which executes a Java main class and print some log data on the terminal. I want to redirect whatever prints this program to another terminal (for example /dev/pts/1, ...
0
votes
2answers
51 views
Launching a Java server from a Shell script
I developed a Server/Client application using Java socket. My Server is Always Running as this code shows.
while(SERVER_STATUT) //Server Statut is always true unless the client launches the stop ...
0
votes
2answers
48 views
Bash ignore exit from Java app
I have a simple BASH script that wraps a java program with the intention of restarting it if that application crashes:
STOP=0
while [ "$STOP" -eq 0 ]
do
echo "Starting"
exec java ...
0
votes
2answers
148 views
How to run a .sh file from java?
I need to run a .sh file from my java code with out passing any arguments. I already tried doing it with
Runtime.getRuntime().exec("src/lexparser.sh");
and
ProcessBuilder pb = new ...
0
votes
2answers
76 views
Shell pass argument to java runned with arguments
I'm launching a java program from a shell script like this:
JAVA_OPTS=
CLASSPATH=
JMX_OPTS=
java $JAVA_OPTS -cp $CLASSPATH $JMX_OPTS
And launched program expects user to type another argument. It ...
1
vote
3answers
338 views
Execute a shell script in runtime of Java code from Eclipse
I have a shell script that I want to execute in Eclipse from a Java code.
I am able to use external tools in order to run the script, but I want the script to run during the execution of the Java ...
1
vote
1answer
152 views
IntelliJ does not recognize PATH variable
I recently tried to import an existing Gradle project, using the option "Open Project" in the startup window and the existing build.gradle file to automatically set-up the project.
Right after I did ...
0
votes
0answers
102 views
Execute Script in Android App(Won't execute)
Hello. I need some assistance. What I want to do is include scripts in my app and then execute them when needed. First, I have no idea where to put them inside my app. What folder should they go in. ...
0
votes
0answers
52 views
Spring shell colorized output
I want to colorize my console output in spring-shell.
Something like:
System.out.println("\red; red text");
I know about colorized JUL logging output, but it's not enought.
How I can do that?
1
vote
1answer
71 views
Start process depending on background process
There are some tests that are ran in an application server (JBoss); we want to integrate these tests in Jenkins.
In Jenkins there are these steps (all steps are Ant steps):
... (other steps)
start ...
0
votes
2answers
103 views
How to create and configure Hadoop client script?
There is a running Hadoop cluster.
And I have downloaded Hadoop distribution (in this case 0.20.205.0)
I need to create some shell script (bash/zsh/perl) that will be capable of calling Hadoop on ...
0
votes
2answers
51 views
Intercept Shell Command
I want to know a way in which I would be able to intercept shell commands
while I run a command to compile a java program like
javac xxx.java
I want the shell to execute a set of programs that ...
1
vote
4answers
88 views
How to run a java code from command prompt which is using API?
I have written code that uses classes in jar files for Twitter4J API. I want to run my code through a command prompt. How would I do that? I tried:
$ javac -cp [path-to-twitter4j-jars] MyCode.java
...
0
votes
4answers
201 views
Execute ls star with Runtime.getRuntime() on Linux
I wanto to execute Runtime.getRuntime().exec(); on Java to list files on some directory.
So I wanto to pass this command "ls /mnt/drbd7/i* | tail -1", but because the star the command returns null. ...
0
votes
3answers
218 views
How do I start an executable jar from within a .sh script?
I have an executable jar file that I would like to start from a *.sh script on Ubuntu Linux.
Currently the myapp.sh file looks like this (error: "nothing happens") :
java -jar myapp.jar --start
I ...
0
votes
2answers
50 views
Is there any way to find out an argument passed to a jar was quoted?
I'm trying to pass a number of arguments to my Java application, but I would like to parse them by myself using an intelligent parser that doesn't just rely on whitespace to separate the arguments. An ...
0
votes
0answers
125 views
Getting ClassNotFound Exception while executing shell script
I want to write a shell script, which should call classes inside the jars. I am getting a ClassNotFound Exception when one jar's class file calling another jar's class file.
Here is what I've tried:
...
-1
votes
1answer
154 views
How to create an AppleScript or Command file to open a .jar file in a specific directory on a Mac?
So I've been Googling and searching for literally 3 hours now for this solution. I used to have some files for this purpose but they have been deleted over the years.
Basically, I have a .jar file ...
0
votes
1answer
101 views
shell script invoked from multiple threads at same time
I am invoking a aix shell script from java with Runtime.exec method.
The shell script takes a file name as input.
Based on the file name the operation inside the script is written.The output of the ...
0
votes
0answers
49 views
Is there a shell framework for java where I can add custom commands? I am looking for a command interpreter rather than commandline args parser [duplicate]
I was wondering if there is a robust and easy-to-use framework for Java using which I can define my custom commands and add them to the shell without having to worry about the internals of the shell ...
3
votes
1answer
92 views
Is it possible to get output of “tail -f” command to java programme?
According to:
Java IO implementation of unix/linux "tail -f"
Java "tail -f" wrapper
I assume its possible but I have the following problem.
String TailCommand = "tail -f ...
0
votes
2answers
45 views
How to change the default compiler?
I have javac complier installed on my mac mashine. By default its version is 7. I want to set complier version to 6 by default. How do I do it on Mac?
Ive found simular solution for ubuntu:
...





