2015-10-22 139 views
0

我不確定這是否可能,但有人知道是否有可能將變量傳遞給java進程?將變量傳遞給java進程

我的代碼是:

Process process = Runtime.getRuntime().exec("cmd /c *curl command* -o "file.png"); 

我想要做的看起來像:

int X = 0; 

Process process = Runtime.getRuntime().exec("cmd /c *curl command* -o "fileX.png"); 

X++; 

這樣我可以有這樣的輸出:

file0.png 

file1.png 

file2.png 

任何幫助將是大。提前致謝。

+0

請大家努力寫了一個問題,其他人都在試圖幫助你...是指http://stackoverflow.com/help/how-to-ask – StackFlowed

+0

你的意思是像一個循環'的(INT i = 0; i SomeJavaGuy

+0

是的!字符串連接。我會試試這個。謝謝。 –

回答

2

你基本上是建立一個字符串。

for (int x=0;x<MAX;x++){ 
    String command = "cmd /c curl command -o \"file" + x + ".png\""; 
    // use it! 
}