我目前正在更改我们的系统以使用另一台服务器来获取文件(为跟踪某些内容而生成的文件,并不重要)。这个系统是基于java的,获取这些文件的代码是使用Linux commandos。获取这些文件的代码是:
session = connection.openSession();
session.execCommand("ls -B -A " + filelocation);
output = new BufferedReader(new InputStreamReader(new StreamGobbler(session.getStdout()), "UTF-8"));
然而,这确实适用于我们的原始服务器(x86_64 GNU/Linux),但不适用于“新”服务器(SunOs 5.10 Generic January)。在 SunOS 服务器上运行此命令时,我得到:
ls: illegal option -- B
usage: ls -1RaAdCxmnlhogrtuvVcpFbqisfHLeE@ [files]
我对命令行很不熟悉,而且我还没有编写原始代码。但这就是我想的
-A, --almost-all Do not list implied . and ..
-B, --ignore-backups Do not list implied entries ending with ~
有没有一种可选的方法可以让它在 SunOS 服务器上工作?
编辑
检查读取的每个字符串 if line.endsWith("~");
while ((outputString = output.readLine()) != null) {
if(!outputString.endsWith("~")){
fileList.add(outputString);
}
}