English 中文(简体)
壳牌和java参数
原标题:Shell script and java parameter

我写了run.sh。 以下简称“java”类:

java -cp . Main $1 $2 $3 $4

这里是我的java阶级(它只是展示一种动力):

public class Main {
    public static void main(String[] args) {
        for (String arg : args) {
            System.out.println(arg);
        }
    }
}

除非我试图通过一个含有空间的参数,否则这项工作正在进行之中。 例如:

./run.sh This is "a test"

显示:

This
is
a
test

How could I modify my shell script and/or change my parameter syntax to pass the parameter "a test" unmodified ?

最佳回答

与此类似:

java -cp . Main "$@"
问题回答

您还必须在文字上掩盖每个参数:

java -cp . Main "$1" "$2" "$3" "$4"

现在,第4项参数应当是空洞的,3项应当是“测试”。

2. 核实和审判:

#!/bin/bash
echo 1 "$1"
echo 2 "$2"
echo 3 "$3"
echo 4 "$4"
echo all "$@"

页: 1

./params.sh This is "a test" 
1 This
2 is
3 a test
4 
all This is a test




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签