3

我已经阅读了许多关于避免在 java 中进行硬编码的文章。但是无法清楚地了解如何将其应用于我的要求。在做了一些研究之后,我提出了这个问题。下面是我的代码片段。在那我想避免路径名的硬编码Process pr = rt.exec()。关于如何做的任何建议?

public class StartUp {

String executable = getStringValue("executable.run");
    String filein = getStringValue("incoming.file");
    String params1 = getStringValue("executable.params1");
    String params2 = getStringValue("executable.params2");
    String log = getStringValue("log.file");
String ss = "Started";
public String startCommand() throws IOException, InterruptedException{



Runtime rt = Runtime.getRuntime();
//Process pr = rt.exec("C:\\server\\rd.exe -a C:\\file.lic -z[+] // C:\\File\\log.txt");

Process pr = rt.exec(executable+" "+params1+" "+filein+" "+params2+" "+log);
    BufferedReader input = new BufferedReader(new InputStreamReader 
(pr.getInputStream()));

String line=null;
StringBuffer start= new StringBuffer();
    while((line=input.readLine()) != null) {
                start.append("ServerStarted" + line + "\n");
        System.out.println(line);
}

int exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);
return line;



//return start.toString();
}
private static String getStringValue(String string) {
    return string;

}
}
4

3 回答 3

4

你有几个事情要尝试:

java 属性

private Properties _properties;

private void init(){
     _properties = new Properties();
     InputStream configurationFileIS = PropertiesConfigurationHandler.class.getClassLoader().getResourceAsStream(CONFIGURATION_FILE);
     _properties.load(configurationFileIS);
}

public String getStringValue(String path) {
    return _properties.getProperty(path);
}

并且属性文件将类似于

an.element.to.be.configured.like.a.path=/dev/null

但你也可以使用 SPRING CONTEXT

<bean
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <list>
            <value>WEB-INF/classes/config/properties/database.properties</value>
            <value>classpath:config/properties/database.properties</value>
        </list>
    </property>
    <property name="ignoreResourceNotFound" value="true"/>
</bean>

并且 database.properties 中的元素将以这种方式访问

"${jdbc.username}"

--

对于您的具体问题。

你可以创建一个文件 constants.properties

executable.run=C:\\server\\rd.exe
incoming.file=C:\\file.lic
executable.params=-z
log.file=C:\\File\\log.txt

然后在 init 之后调用 getStringValue:

String executable = getStringValue("executable.run");
String filein = getStringValue("incoming.file");
String params = getStringValue("executable.params");
String log = getStringValue("log.file");

然后你可以rt.exec使用 and 而不是使用硬编码的字符串,你可以使用你之前检索到的那些。

于 2013-10-08T15:08:04.837 回答
3
  • 使用系统属性,例如,-Dpath=...System.getProperty("path");
  • 使用配置文件
  • 在命令行中传入
  • 从 JNDI 获取
  • 等等。

换句话说,有很多不同的方法,最好的取决于您的实际需求。

于 2013-10-08T15:05:08.563 回答
0

您也可以将字符串分配给一个命名良好的private final static String. 这样代码变得更具可读性(如果您以后需要更改它,也更容易更新。

private final static String rtCommand = ""C:\\server\\rd.exe -a C:\\file.lic -z[+] C:\\File\\log.txt";//or something more smartly named. You would know what to name it.
....
Process pr = rt.exec(rtCommand);
于 2013-10-08T15:13:34.953 回答