我有一个在Linux框中执行命令的代码(ls - latr /home/ars | awk '{if(NR>1)print}'
),它给出了目录列表及其信息。如何将它放入某个数组或列表中,以便根据每行我可以从(列表或数组)获取文件名,权限等 !!
这是我的代码,它在我的问题的底部打印输出
这里cmd=ls - latr /home/ars | awk '{if(NR>1)print}'
函数调用
HashMap<String,String> params = IntermediateResults.get("userparams")
Map env=AppContext.get(AppCtxProperties.environmentVariables)
def fClass = new GroovyClassLoader().parseClass( new File( 'plugins/infa9/Infa9CommandExecUtil.groovy' ) )
String cmd="ls -latr "+rrs.get("linkpath")+" | awk '{if(NR>1)print}'"
String res=fClass.newInstance().fetchInformation( params, env, cmd )
我的函数叫
public String fetchInformation( Map<String,String> params, Map env, String cmd )
{
try
{
Process proc = Runtime.getRuntime().exec(cmd);
InputStream stdin = proc.getInputStream();
InputStreamReader isr = new InputStreamReader(stdin);
BufferedReader br = new BufferedReader(isr);
String line = null;
while ((line = br.readLine()) != null)
{
result.append(line);
println "$line" // This output is given at the end
}
int exitVal = proc.waitFor();
}
catch (IOException io)
{
io.printStackTrace();
}
catch (InterruptedException ie)
{
ie.printStackTrace();
}
//println("\n\n"+result)
return result
}
我的输出
/data/u01/app/oracle/10.2.0/db_1:
total 260
-rwxr-xr-x 1 oracle dba 0 Jun 7 2005 root.sh.old
drwxr-xr-x 4 oracle dba 4096 Jan 17 2007 xdk
drwxr-xr-x 4 oracle dba 4096 Jan 17 2007 uix
drwxr-xr-x 3 oracle dba 4096 Jan 17 2007 tg4tera
drwxr-xr-x 3 oracle dba 4096 Jan 17 2007 tg4sybs
drwxr-xr-x 3 oracle dba 4096 Jan 17 2007 tg4ingr
drwxr-xr-x 3 oracle dba 4096 Jan 17 2007 tg4ifmx
那么我怎样才能将上面的输出放在某个List中,这样我就可以在每一行获得权限,硬链接,所有者,组,文件大小,月份,日期,时间,年份和文件名?
更新
这就是我想要做的,是否有更好的方法可以使用地图?
List<List<String>> frows = new ArrayList<List<String>>()
while ((line = br.readLine()) != null)
{
List<String> fileList= new ArrayList<String>()
result.append(line);
String[] strs = line.split(" ")
for(item in strs)
{
//print "$item "
fileList.add(item)
}
frows.add(fileList)
}
for (List<String> l : frows)
{
for (String s : l) {
print "$s"
}
println ""
}
答案 0 :(得分:4)
您不应该使用系统相关的ls-command,并解析它的容易出错的输出。考虑一个文件名“foo \ n drwxr-xr-x 4 oracle dba 4096 2007年1月17日uix“例如。
使用java.io.File代替,读取目录,获取带有名称的File对象,时间属性。
您使用这样的列表:
List <File> result = new List<File> ();
// and in the loop:
result.add (file);
答案 1 :(得分:2)
创建一个类FileDetail
,其中包含属性权限,硬链接,所有者,组,文件大小,月份,日期,时间,年份和文件名。在你的方法内
List<FileDetail> fileDetails = new ArrayList<FileDetail>();
while ((line = br.readLine()) != null)
{
FileDetail file = new FileDetail();
println "$line" // This output is given at the end
// parse - use space delimiter and String.split() API
String[] strs = line.split(" ");
// set values to "file"
// add to list
fileDetails .add(file);
}
return fileDetails;
使用地图,
List<Map<String, String>> files = new ArrayList<Map<String, String>>()
while ((line = br.readLine()) != null) {
Map<String, String> file = new Map<String, String>()
String[] strs = line.split(" ")
// Find the order of fields, but it is system dependent, may not work in futrue
file.add("PERMISSIONS", strs[0]); // and so on for next and you may need to trim map value
files.add(file);
println "$line"
}
return files;
答案 2 :(得分:1)
另一种方法是使用JNA访问您平台的本地stat
调用...
这在OS X下适用于我。我将其保存为stattest.groovy
,当由groovy stattest.groovy
执行时,它会打印出有关其自身的详细信息:
@Grab( 'net.java.dev.jna:jna:3.3.0')
@Grab( 'org.jruby.ext.posix:jna-posix:1.0.3' )
import org.jruby.ext.posix.*
File f = new File( 'stattest.groovy' )
POSIX posix = POSIXFactory.getPOSIX( [ isVerbose:{ false } ] as POSIXHandler , true)
FileStat s = posix.stat( f.absolutePath )
s.properties.each { name, val ->
println "$name: $val"
}
[ 'atime', 'blocks', 'blockSize', 'ctime', 'dev', 'gid', 'ino', 'mode', 'mtime', 'nlink', 'rdev', 'st_size', 'uid' ].each {
println "$it() -> ${s."$it"()}"
}
打印出来:
13:23:46 [tyates@mac] JNA $ groovy stattest.groovy
symlink: false
file: true
setuid: false
byteBuffer: java.nio.HeapByteBuffer[pos=0 lim=120 cap=120]
executableReal: false
structSize: 120
namedPipe: false
empty: false
blockDev: false
executable: false
fifo: false
class: class org.jruby.ext.posix.MacOSHeapFileStat
setgid: false
sticky: false
charDev: false
owned: true
directory: false
ROwned: true
readableReal: true
writableReal: true
readable: true
writable: true
groupOwned: false
socket: false
atime() -> 1317644640
blocks() -> 8
blockSize() -> 4096
ctime() -> 1317644636
dev() -> 234881026
gid() -> 1255
ino() -> 62213399
mode() -> 33204
mtime() -> 1317644636
nlink() -> 1
rdev() -> 0
st_size() -> 527
uid() -> 1114