Sponsored Content
Top Forums Shell Programming and Scripting execute command unix with java:possible or not? Post 51200 by zazzybob on Thursday 13th of May 2004 07:07:26 AM
Old 05-13-2004
It's fairly easy to execute a command that's in your PATH, for example, ls

Code:
import java.io.InputStream;
import java.io.IOException;

public class foo
{
   public foo()
   {
       Runtime rt = Runtime.getRuntime();
       Process p = null;
       try
       {
           p = rt.exec( "ls -l" );
       }
       catch ( IOException ioe )
       {
           System.out.println( "Error executing file" );
       }
       InputStream output = p.getInputStream();
       System.out.println( output );
   }

   public static void main( String args[] )
   {
       foo f = new foo();
       System.exit( 0 );
   }
}

Scripts are a little more work, have a look here
http://www.devx.com/tips/Tip/14667
that should help.


Peace,
ZB
http://www.zazzybob.com

EDIT: My code worked for commands, not scripts. Hay ho.

Last edited by zazzybob; 05-14-2004 at 07:09 AM..
 

10 More Discussions You Might Find Interesting

1. Programming

execute unix command from java eclips

Hi all, I tried to execute the command by 2 ways : 1) Java Runtime class exec method - but the problem there is that it only can execute scripts without arguments(I need with args) 2) the Jtux classs Uprocess- the problem it is not supported by windows and my eclips platform is on... (0 Replies)
Discussion started by: katzs500
0 Replies

2. UNIX for Advanced & Expert Users

How to execute multiple unix commands in one session from java

Hi, Iam trying to code in java and wanted to run the commands in the Unix remote servers. I have the following code to run multiple GREP commands in a single session. But when i execute this, the first command executes successfully, whereas from the next line it says "Exception Occured... (1 Reply)
Discussion started by: gravi2020
1 Replies

3. UNIX for Dummies Questions & Answers

How to execute a command on UNIX?

Hi guys, I'm completely new to UNIX and Linux and all that stuff. I've been using webhosting (shared) for some time years now and recently I've wanted to carry out some tasks that have had some commands which are not familiar to me. One was to install Mailman and the other to copy files from one... (6 Replies)
Discussion started by: BenA
6 Replies

4. Shell Programming and Scripting

Execute a unix command

Hi, Please suggest me to execute unix command. Input : 2011-01-01 00:00:00 Required output : 20110101000000 YYYYMMDDHH24MISS Regards Akshu (4 Replies)
Discussion started by: akshu.agni
4 Replies

5. Shell Programming and Scripting

How to execute PMCMD command in Unix?

Hi All, I am trying to run the PMCMD commend to execute the informatica workflow but while executing from my home directory i am getting below error ksh: pmcmd: not found I executed from my server/bin directory too. I am getting the same error. My commend is: pmcmd startworkflow -sv... (3 Replies)
Discussion started by: kannansr621
3 Replies

6. Shell Programming and Scripting

how to execute a unix shell script from a java program

Hi All, well , i am facing this problem.. i have tried a few sample codes but there isn't any solution . could anyone please give a sample code as of how to do this... Please see the below details...and read the details carefully. I have written some code, logic is 1)from... (4 Replies)
Discussion started by: aish11
4 Replies

7. UNIX for Advanced & Expert Users

running unix command from java

Hi All, I have been struggling for a week trying to run a unix command from my java program. the unix command is = ssh dmdev3@tsapid01-zt3d01 ':> /t3/envs/dmdev3/test/file_list.txt' when i try to run this command directly on my unix console, it works perfectly. but when i try it form my... (0 Replies)
Discussion started by: madhu_sharan
0 Replies

8. UNIX for Dummies Questions & Answers

running unix command from java

Hi All, I have been struggling for a week trying to run a unix command from my java program. the unix command is: ssh dmdev3@tsapid01-zt3d01 ':> /t3/envs/dmdev3/test/file_list.txt' when i try to run this command directly on my unix console, it works perfectly. but when i try it form... (12 Replies)
Discussion started by: madhu_sharan
12 Replies

9. UNIX for Dummies Questions & Answers

Execute a command in different directory through Unix Script

Hi Gurus, I have the below requirement, Execute an unix script which will pick the latest file from the archive directory and do a grep (on multiple patterns) on that file. processingDir="/usr/apps/irdc/informatica/spsf_sales/TgtFiles/ARCHIVE" filename = 'ls Check* | sort -n -k 2 |... (6 Replies)
Discussion started by: diva_thilak
6 Replies

10. Shell Programming and Scripting

How to execute previous command in UNIX?

Hi, I was able to use !! on the console. But when I used !! in the run.sh, it says something like command not found. (3 Replies)
Discussion started by: alvinoo
3 Replies
OAUTH(3)								 1								  OAUTH(3)

The OAuth class

INTRODUCTION
The OAuth extension provides a simple interface to interact with data providers using the OAuth HTTP specification to protect private resources. CLASS SYNOPSIS
OAuth OAuth Properties o public$debug o public$sslChecks o public$debugInfo Methods o public OAuth::__construct OAUTH_SIG_METHOD_HMACSHA1 (string $consumer_key, string $consumer_secret, [string $signature_method], [int $auth_type]) o public void OAuth::__destruct (void ) o public bool OAuth::disableDebug (void ) o public bool OAuth::disableRedirects (void ) o public bool OAuth::disableSSLChecks (void ) o public bool OAuth::enableDebug (void ) o public bool OAuth::enableRedirects (void ) o public bool OAuth::enableSSLChecks (void ) o public mixed OAuth::fetch (string $protected_resource_url, [array $extra_parameters], [string $http_method], [array $http_headers]) o public string OAuth::generateSignature (string $http_method, string $url, [mixed $extra_parameters]) o public array OAuth::getAccessToken (string $access_token_url, [string $auth_session_handle], [string $verifier_token], [string $http_method]) o public array OAuth::getCAPath (void ) o public string OAuth::getLastResponse (void ) o public string OAuth::getLastResponseHeaders (void ) o public array OAuth::getLastResponseInfo (void ) o public string OAuth::getRequestHeader (string $http_method, string $url, [mixed $extra_parameters]) o public array OAuth::getRequestToken (string $request_token_url, [string $callback_url], [string $http_method]) o public mixed OAuth::setAuthType (int $auth_type) o public mixed OAuth::setCAPath ([string $ca_path], [string $ca_info]) o public mixed OAuth::setNonce (string $nonce) o public void OAuth::setRequestEngine (int $reqengine) o public mixed OAuth::setRSACertificate (string $cert) o public bool OAuth::setSSLChecks (int $sslcheck) o public mixed OAuth::setTimestamp (string $timestamp) o public bool OAuth::setToken (string $token, string $token_secret) o public bool OAuth::setVersion (string $version) PROPERTIES
o $debug - o $sslChecks - o $debugInfo - PHP Documentation Group OAUTH(3)
All times are GMT -4. The time now is 08:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy